summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1cb059f)
raw | patch | inline | side by side (parent: 1cb059f)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 30 Mar 2007 12:44:47 +0000 (12:44 +0000) | ||
committer | cajus <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 | patch | blob | history | |
plugins/gofax/faxreports/class_faxreport.inc | patch | blob | history |
diff --git a/Changelog b/Changelog
index 3cd4ce031f09e0683b178c0b7060645952d9a24b..6d53ec88200d45dd4a9e4250dd886041c7a5c94c 100644 (file)
--- a/Changelog
+++ b/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 cc5e9a8a07acfe8ff517f4699e62184b49f59fcb..3aa5aea4b53419281654bd84344f31bf6bc5917e 100644 (file)
/* 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 */