diff options
| author | Tyler Bello <tylerbello@users.sourceforge.net> | 2009-11-10 18:48:07 +0000 |
|---|---|---|
| committer | Tyler Bello <tylerbello@users.sourceforge.net> | 2009-11-10 18:48:07 +0000 |
| commit | 60816b9b280518237e517cae061acb10ef9e811c (patch) | |
| tree | a8ac2645dc521f4c1ae2472e8874b8d07f7e73ad /FisheyeBase.php | |
| parent | 88c15e4da3828e5c121a29c05515620f254501c7 (diff) | |
| download | fisheye-60816b9b280518237e517cae061acb10ef9e811c.tar.gz fisheye-60816b9b280518237e517cae061acb10ef9e811c.tar.bz2 fisheye-60816b9b280518237e517cae061acb10ef9e811c.zip | |
Add gallery_id attribute and breadcrumb class to breadcrumb link. Bare bones information needed to make personal modifications to breadcrumbs after they are returned.
Diffstat (limited to 'FisheyeBase.php')
| -rw-r--r-- | FisheyeBase.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FisheyeBase.php b/FisheyeBase.php index 95ab1d8..f2aac7d 100644 --- a/FisheyeBase.php +++ b/FisheyeBase.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeBase.php,v 1.32 2009/11/04 01:04:53 spiderr Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeBase.php,v 1.33 2009/11/10 18:48:07 tylerbello Exp $ * @package fisheye */ @@ -117,7 +117,7 @@ class FisheyeBase extends LibertyMime if( !empty( $rs->fields ) ) { $path = ''; for( $i = 1; $i <= (count( $rs->fields ) / 2); $i++ ) { - $ret .= ' <a href="'.FisheyeGallery::getDisplayUrl( $rs->fields['gallery_id'.$i], $path ).'" >'.$rs->fields['title'.$i].'</a> » '; + $ret .= ' <a class="breadcrumb" href="'.FisheyeGallery::getDisplayUrl( $rs->fields['gallery_id'.$i], $path ).'" gallery_id = "'.$rs->fields['gallery_id'.$i].'" >'.$rs->fields['title'.$i].'</a> » '; $path .= '/'.$rs->fields['gallery_id'.$i]; } } |
