aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornikrou <nikrou@piwigo.org>2006-06-16 18:45:06 +0000
committernikrou <nikrou@piwigo.org>2006-06-16 18:45:06 +0000
commit81c64693968f0dd3c6b9835df175c5e87398129a (patch)
treeee535c42fb1044aa230b9132e31b90d57aacc506
parentd7238c8b1357b04cafedae8dfbfc63b9f68525a2 (diff)
bug 423 fixed: & non encoded in image url
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1357 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/stats.php4
1 files changed, 2 insertions, 2 deletions
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'].'&amp;month='.$_GET['month'].'&amp;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'].'&amp;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']." )";