  |
1 | 1 | | <?php |
| |
2 | 2 | | /* |
  |
3 | | - | $Id: breadcrumb.php 151 2005-08-02 14:33:25Z mattice $ |
| |
| 3 | + | $Id: breadcrumb.php 751 2006-08-23 11:43:07Z hpdl $ |
|
4 | 4 | | |
| |
5 | 5 | | osCommerce, Open Source E-Commerce Solutions |
| |
6 | 6 | | http://www.oscommerce.com |
| |
7 | 7 | | |
  |
8 | | - | Copyright (c) 2003 osCommerce |
| |
| 8 | + | Copyright (c) 2006 osCommerce |
|
9 | 9 | | |
| |
10 | 10 | | Released under the GNU General Public License |
| |
11 | 11 | | */ |
| |
|
|
 |
… |
|
30 | 30 | | |
| |
31 | 31 | | for ($i=0, $n=sizeof($this->_trail); $i<$n; $i++) { |
| |
32 | 32 | | 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']); |
  |
34 | 34 | | } else { |
| |
35 | 35 | | $trail_string .= $this->_trail[$i]['title']; |
| |
36 | 36 | | } |