aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2005-11-05 15:16:03 +0000
committerplegall <plg@piwigo.org>2005-11-05 15:16:03 +0000
commit2ee8bc9efe08ebd6a2d7bca78620ca0dd96e950d (patch)
tree8a3a72816b2834061352b82e35249955a7c9296d /include
parentd8ececfdbea5e5f65f9ef2988079bea5884113ae (diff)
- bug 186 fixed: useless template theme icons deleted. Remaining icons in
GIF converted to PNG. git-svn-id: http://piwigo.org/svn/trunk@922 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r--include/functions_html.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php
index b49533db4..5fe88fb63 100644
--- a/include/functions_html.inc.php
+++ b/include/functions_html.inc.php
@@ -44,7 +44,7 @@ function get_icon( $date )
if ( $diff < $user['recent_period'] * $day_in_seconds )
{
$icon_url = './template/'.$user['template'].'/theme/';
- $icon_url.= 'recent.gif';
+ $icon_url.= 'recent.png';
$title .= $user['recent_period'];
$title .= '&nbsp;'.$lang['days'];
$size = getimagesize( $icon_url );