[bknr-cvs] r2119 - trunk/projects/bos/payment-website/infosystem
bknr at bknr.net
bknr at bknr.net
Tue Dec 19 05:34:37 UTC 2006
Author: hhubner
Date: 2006-12-19 00:34:37 -0500 (Tue, 19 Dec 2006)
New Revision: 2119
Modified:
trunk/projects/bos/payment-website/infosystem/javascript.js
Log:
Further fix for off-by-one error in month display.
Modified: trunk/projects/bos/payment-website/infosystem/javascript.js
===================================================================
--- trunk/projects/bos/payment-website/infosystem/javascript.js 2006-12-19 05:16:17 UTC (rev 2118)
+++ trunk/projects/bos/payment-website/infosystem/javascript.js 2006-12-19 05:34:37 UTC (rev 2119)
@@ -182,7 +182,7 @@
B(anzahlVerkauft), BR(), BR(),
msg('Letzter Sponsor'), BR(),
B(sponsor.name, BR()),
- '(' + sponsor.date.getDate() + "." + sponsor.date.getMonth() + "." + ' - ' + sponsor.country + ' - ' + sponsor.count + ' m²)');
+ '(' + sponsor.date.getDate() + "." + (sponsor.date.getMonth() + 1) + "." + ' - ' + sponsor.country + ' - ' + sponsor.count + ' m²)');
}
function poi_fertig(_poi, _anzahlSponsoren, _anzahlVerkauft) {
More information about the Bknr-cvs
mailing list