diff options
author | Friendika <info@friendika.com> | 2011-06-13 21:43:21 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-13 21:43:21 -0700 |
commit | 4469f92ea30c7af23b28daf244f827621928d19e (patch) | |
tree | 365eb4a8f0e469aaeeece50153b90b30a9f9d4e9 /mod/photos.php | |
parent | dc10178b186f9f1693ebb59311dabfd7eab55b91 (diff) | |
download | volse-hubzilla-4469f92ea30c7af23b28daf244f827621928d19e.tar.gz volse-hubzilla-4469f92ea30c7af23b28daf244f827621928d19e.tar.bz2 volse-hubzilla-4469f92ea30c7af23b28daf244f827621928d19e.zip |
prev/next icons (instead of text) for photos
Diffstat (limited to 'mod/photos.php')
-rw-r--r-- | mod/photos.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/photos.php b/mod/photos.php index 18fff703e..717800364 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -1041,7 +1041,7 @@ function photos_content(&$a) { } if($prevlink) - $prevlink = array($prevlink, t('<< Prev')) ; + $prevlink = array($prevlink, '<div class="icon prev"></div>') ; $photo = array( 'href' => $a->get_baseurl() . '/photo/' . $hires['resource-id'] . '-' . $hires['scale'] . '.jpg', @@ -1050,7 +1050,7 @@ function photos_content(&$a) { ); if($nextlink) - $nextlink = array($nextlink, t('Next >>')); + $nextlink = array($nextlink, '<div class="icon next"></div>'); // Do we have an item for this photo? |