From 91d6fa38af32d9a2eac1ddbdaa5fbe1a678fbdb6 Mon Sep 17 00:00:00 2001 From: cajus Date: Fri, 30 Mar 2007 12:44:47 +0000 Subject: [PATCH] Fixed display of fax months git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5939 594d385d-05f5-0310-b6e9-bd551577e9d8 --- Changelog | 1 + plugins/gofax/faxreports/class_faxreport.inc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 3cd4ce031..6d53ec882 100644 --- a/Changelog +++ b/Changelog @@ -8,6 +8,7 @@ GOsa2 changelog - Freezed application parameters are not editable anymore - Fixed problem with removing commata based DN's - Corrected setup generated perl mkntpasswd string + - Fixed month listing in fax reports - february was march * gosa 2.5.9 - Fixed ldap tls connections when schema check was being used diff --git a/plugins/gofax/faxreports/class_faxreport.inc b/plugins/gofax/faxreports/class_faxreport.inc index cc5e9a8a0..3aa5aea4b 100644 --- a/plugins/gofax/faxreports/class_faxreport.inc +++ b/plugins/gofax/faxreports/class_faxreport.inc @@ -69,7 +69,7 @@ class faxreport extends plugin /* Create months */ $months= array(); for($i = 1 ; $i <= 12 ; $i ++ ){ - $months[$i] = _(date("F",gmmktime(0,0,0,$i))); + $months[$i] = _(date("F",gmmktime(0,0,0,$i,1))); } /* Create years */ -- 2.30.2