aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2011-11-04 10:12:01 +0000
committerplegall <plg@piwigo.org>2011-11-04 10:12:01 +0000
commita9d3ee0e4db38c00cc2380b14616f338acd8e4ea (patch)
treeba827b1c5536c5815dbf08037550a006288935a3
parent60dd33f03062d6e08ac0fdf456257e78d26b8899 (diff)
bug 2492 fixed: no need to transmit ['hit'] to get_thumbnail_title, this parameter becomes optional to avoid errors in plugins
git-svn-id: http://piwigo.org/svn/branches/2.3@12540 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--include/functions.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php
index 7873674ec..e69d5ced6 100644
--- a/include/functions.inc.php
+++ b/include/functions.inc.php
@@ -798,7 +798,7 @@ function get_thumbnail_title($info)
$details = array();
- if ($info['hit'] != 0)
+ if (!empty($info['hit']))
{
$details[] = $info['hit'].' '.strtolower(l10n('Visits'));
}