Quick Search:

Mode

Context

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

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

153
 
669
 
669
 
breadcrumb.php
_> 11 <?php
  22 /*
<> 3 -  $Id: breadcrumb.php 153 2005-08-04 12:57:59Z hpdl $
   3+  $Id: breadcrumb.php 669 2006-07-29 13:36:24Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
  77 
<> 8 -  Copyright (c) 2003 osCommerce
   8+  Copyright (c) 2006 osCommerce
99 
  1010   Released under the GNU General Public License
  1111 */
     
 !
3030 
  3131       for ($i=0, $n=sizeof($this->_trail); $i<$n; $i++) {
  3232         if (isset($this->_trail[$i]['link']) && tep_not_null($this->_trail[$i]['link'])) {
<> 33 -          $trail_string .= '<a href="' . $this->_trail[$i]['link'] . '" class="headerNavigation">' . $this->_trail[$i]['title'] . '</a>';
   33+          $trail_string .= osc_link_object($this->_trail[$i]['link'], $this->_trail[$i]['title']);
<_ 3434         } else {
  3535           $trail_string .= $this->_trail[$i]['title'];
  3636         }