aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2006-02-13 21:41:16 +0000
committerplegall <plg@piwigo.org>2006-02-13 21:41:16 +0000
commitc4cb551358ac8b81b3ea1dcab51b618ea058661f (patch)
tree79e7d2ad95df7c7f8b540f66009c61774ca762aa
parenteb692b973ea60ff9df874a5dc1e4049afe488261 (diff)
bug 276 fixed: french word "du" was hardcoded on day stats. Replaced by a
":", just like for month stats. git-svn-id: http://piwigo.org/svn/branches/branch-1_5@1037 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/stats.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/stats.php b/admin/stats.php
index 1a821a476..15d458a9f 100644
--- a/admin/stats.php
+++ b/admin/stats.php
@@ -60,7 +60,7 @@ else
if (isset($_GET['day']) && isset($_GET['month']) && isset($_GET['year']) )
{
$date_of_day=$_GET['day'].' '.$lang['month'][$_GET['month']].' '.$_GET['year'];
- $title_page=$lang['stats_day_title'].' du '.$date_of_day;
+ $title_page=$lang['stats_day_title'].' : '.$date_of_day;
$url_back = PHPWG_ROOT_PATH."admin.php?page=stats";
$url_back = add_session_id($url_back);
$title_details='<a href='.$url_back.'>'.$lang['stats_day_title'].'</a>';