From 57a108d957c09fd22bbedb1e23441998adff435d Mon Sep 17 00:00:00 2001 From: nikrou Date: Fri, 16 Jun 2006 18:47:25 +0000 Subject: bug 423 fixed: & non encoded in image url svn merge -r1356:1357 from branch 1.6 into trunk git-svn-id: http://piwigo.org/svn/trunk@1358 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/stats.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'admin/stats.php') diff --git a/admin/stats.php b/admin/stats.php index d11d0426a..0941e96d8 100644 --- a/admin/stats.php +++ b/admin/stats.php @@ -44,14 +44,14 @@ $where_clause = "1"; if (isset($_GET['day']) && isset($_GET['month']) && isset($_GET['year']) ) { - $url_img .= 'daily_stats.img.php?year='.$_GET['year'].'&month='.$_GET['month'].'&day='.$_GET['day']; + $url_img .= 'daily_stats.img.php?year='.$_GET['year'].'&month='.$_GET['month'].'&day='.$_GET['day']; $nls_value_title = $lang['w_day']; $group_clause = "DATE_FORMAT(date,'%Y-%m-%d') ASC"; $where_clause = "(YEAR(date) = ".$_GET['year']." AND MONTH(date) = ".$_GET['month']." )"; } elseif (isset($_GET['month']) && isset($_GET['year']) ) { - $url_img .= 'monthly_stats.img.php?year='.$_GET['year'].'&month='.$_GET['month']; + $url_img .= 'monthly_stats.img.php?year='.$_GET['year'].'&month='.$_GET['month']; $nls_value_title = $lang['w_day']; $group_clause = "DATE_FORMAT(date,'%Y-%m-%d') ASC"; $where_clause = "(YEAR(date) = ".$_GET['year']." AND MONTH(date) = ".$_GET['month']." )"; -- cgit v1.2.3