Quick Search:

Mode

Context

Displaying 3 lines of context. None | Less | More | Full

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

203
 
686
 
686
 
navigation_history.php
_> 11 <?php
  22 /*
<> 3 -  $Id: navigation_history.php 203 2005-09-23 14:17:59Z hpdl $
   3+  $Id: navigation_history.php 686 2006-08-14 22:33:22Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
     
 !
114114 
  115115       $back = sizeof($this->_data) - $back;
  116116 
<> 117 -      return tep_href_link($this->_data[$back]['page'], $this->_parseParameters($this->_data[$back]['get'], $exclude), $this->_data[$back]['mode']);
   117+      return osc_href_link($this->_data[$back]['page'], $this->_parseParameters($this->_data[$back]['get'], $exclude), $this->_data[$back]['mode']);
118118     }
  119119 
  120120     function setSnapshot($page = '') {
     
 !
149149 
  150150     function getSnapshotURL($auto_mode = false) {
  151151       if ($this->hasSnapshot()) {
<> 152 -        $target = tep_href_link($this->_snapshot['page'], $this->_parseParameters($this->_snapshot['get']), ($auto_mode === true) ? 'AUTO' : $this->_snapshot['mode']);
   152+        $target = osc_href_link($this->_snapshot['page'], $this->_parseParameters($this->_snapshot['get']), ($auto_mode === true) ? 'AUTO' : $this->_snapshot['mode']);
153153       } else {
<> 154 -        $target = tep_href_link(FILENAME_DEFAULT, '', ($auto_mode === true) ? 'AUTO' : $this->_snapshot['mode']);
   154+        $target = osc_href_link(FILENAME_DEFAULT, null, ($auto_mode === true) ? 'AUTO' : $this->_snapshot['mode']);
<_ 155155       }
  156156 
  157157       return $target;