diff options
author | deva <deva> | 2010-03-02 19:28:55 +0000 |
---|---|---|
committer | deva <deva> | 2010-03-02 19:28:55 +0000 |
commit | 23e6eb95cd1d85587596f11df05b716b6f220dfb (patch) | |
tree | bdfeafe1cdeddacac5dcfa031ccdc546341ce90f /utils | |
parent | cdb7c82c11286f02c869c466cc6cdfe1fefbd0b6 (diff) |
Remove build-in home/stop icons.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/modules/gallery.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/utils/modules/gallery.php b/utils/modules/gallery.php index 3d6e638..3915a90 100644 --- a/utils/modules/gallery.php +++ b/utils/modules/gallery.php @@ -148,23 +148,23 @@ class Album { $str .= $this->photos[$photo - 1]->show($indent." ", "navicon"); $str .= $indent." </a>\n"; } else { - $str .= $indent." <a class=\"nav_icon\" href=\"?page=gallery&a=".$album."\">\n"; - $str .= $indent." <img alt=\"Stop\" src=\"gfx/stop.png\"/>\n"; + $str .= $indent." <a class=\"nav_icon stop_icon\" href=\"?page=gallery&a=".$album."\">\n"; + $str .= $indent." <span class=\"text\">Stop</span>\n"; $str .= $indent." </a>\n"; } - $str .= $indent." <a class=\"nav_icon\" href=\"?page=gallery&a=".$album."\">\n"; - $str .= $indent." <img alt=\"Home\" src=\"gfx/home.png\"/>\n"; - $str .= $indent." </a>\n"; + $str .= $indent." <a class=\"nav_icon home_icon\" href=\"?page=gallery&a=".$album."\">\n"; + $str .= $indent." <span class=\"text\">Home</span>\n"; + $str .= $indent." </a>\n"; if($this->photos[$photo + 1]) { $str .= $indent." <a class=\"nav_icon\" href=\"?page=gallery&a=".$album."&p=".($photo+1)."\">\n"; $str .= $this->photos[$photo + 1]->show($indent." ", "navicon"); $str .= $indent." </a>\n"; } else { - $str .= $indent." <a class=\"nav_icon\" href=\"?page=gallery&a=".$album."\">\n"; - $str .= $indent." <img alt=\"Stop\" src=\"gfx/stop.png\"/>\n"; - $str .= $indent." </a>\n"; + $str .= $indent." <a class=\"nav_icon stop_icon\" href=\"?page=gallery&a=".$album."\">\n"; + $str .= $indent." <span class=\"text\">Stop</span>\n"; + $str .= $indent." </a>\n"; } $str .= $indent."</span>\n"; |