diff options
author | friendica <info@friendica.com> | 2013-10-10 02:15:44 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-10 02:15:44 -0700 |
commit | 3985aa07b4d81474615a3bb8e5a94a0217715267 (patch) | |
tree | 65b55c060d792aa72dea1eb4a013a8a7d6863fe4 /mod/photos.php | |
parent | 87f1c6b8ecaf796409c6dfeb8735ce0af2ba410c (diff) | |
download | volse-hubzilla-3985aa07b4d81474615a3bb8e5a94a0217715267.tar.gz volse-hubzilla-3985aa07b4d81474615a3bb8e5a94a0217715267.tar.bz2 volse-hubzilla-3985aa07b4d81474615a3bb8e5a94a0217715267.zip |
more icon tweaks - this could be going on for some time; try to get icon code (and all theme stuff) out of main code and into templates, but on the short term provide both so nothing breaks.
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 45c8e67c6..f751d7d4f 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -975,7 +975,7 @@ function photos_content(&$a) { } if($prevlink) - $prevlink = array($prevlink, '<div class="icon prev"></div>') ; + $prevlink = array($prevlink, '<i class="icon-backward photo-icons""></i>') ; $photo = array( 'href' => $a->get_baseurl() . '/photo/' . $hires['resource_id'] . '-' . $hires['scale'] . '.' . $phototypes[$hires['type']], @@ -984,7 +984,7 @@ function photos_content(&$a) { ); if($nextlink) - $nextlink = array($nextlink, '<div class="icon next"></div>'); + $nextlink = array($nextlink, '<i class="icon-forward photo-icons"></i>'); // Do we have an item for this photo? |