Code

Fixed display of fax months
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 30 Mar 2007 12:44:47 +0000 (12:44 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 30 Mar 2007 12:44:47 +0000 (12:44 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5939 594d385d-05f5-0310-b6e9-bd551577e9d8

Changelog
plugins/gofax/faxreports/class_faxreport.inc

index 3cd4ce031f09e0683b178c0b7060645952d9a24b..6d53ec88200d45dd4a9e4250dd886041c7a5c94c 100644 (file)
--- 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
index cc5e9a8a07acfe8ff517f4699e62184b49f59fcb..3aa5aea4b53419281654bd84344f31bf6bc5917e 100644 (file)
@@ -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 */