[Vtigercrm-commits] [vtiger-commits] r9538 - /vtigercrm/branches/5.0.1/jscalendar/calendar.js
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Mon Sep 25 05:44:58 EDT 2006
Author: richie
Date: Mon Sep 25 03:44:35 2006
New Revision: 9538
Log:
Year selection fix in IE - contribution by brian
Modified:
vtigercrm/branches/5.0.1/jscalendar/calendar.js
Modified: vtigercrm/branches/5.0.1/jscalendar/calendar.js
==============================================================================
--- vtigercrm/branches/5.0.1/jscalendar/calendar.js (original)
+++ vtigercrm/branches/5.0.1/jscalendar/calendar.js Mon Sep 25 03:44:35 2006
@@ -1703,7 +1703,9 @@
return str;
};
+if ( Date.prototype.__msh_oldSetFullYear == null ) {
Date.prototype.__msh_oldSetFullYear = Date.prototype.setFullYear;
+}
Date.prototype.setFullYear = function(y) {
var d = new Date(this);
d.__msh_oldSetFullYear(y);
More information about the vtigercrm-commits
mailing list