diff options
Diffstat (limited to 'utils/modules')
| -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"; | 
