From c4cb551358ac8b81b3ea1dcab51b618ea058661f Mon Sep 17 00:00:00 2001 From: plegall Date: Mon, 13 Feb 2006 21:41:16 +0000 Subject: 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 --- admin/stats.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=''.$lang['stats_day_title'].''; -- cgit v1.2.3