]> err.no Git - scalable-opengroupware.org/commitdiff
fixed date comparison
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 20 Jul 2005 10:16:53 +0000 (10:16 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 20 Jul 2005 10:16:53 +0000 (10:16 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@837 d1b88da0-ebda-0310-925b-ed51d893ca5b

SOGo/UI/WebServerResources/ChangeLog
SOGo/UI/WebServerResources/UIxAppointmentEditor.js

index 5cc90a10d8a91b01d414ff8ea85569af84043394..f310a951bc72fbb3da3736900a020b009d339b43 100644 (file)
@@ -1,5 +1,8 @@
 2005-07-20  Helge Hess  <helge.hess@opengroupware.org>
 
+       * UIxAppointmentEditor.js: properly use getDate() instead of getDay()
+         for date comparison (#1478)
+
        * UIxAppointmentEditor.js: properly validate startdate/enddate so that
          startdate is always before the enddate (#1478)
 
index 3277096d253f4ffd605a18a841bb8c05d8aea032..1de34b0cea7e8667f7150d1cd2a78a7892962aa4 100644 (file)
@@ -27,8 +27,8 @@ function uixEarlierDate(date1, date2) {
   if (date1.getMonth() < date2.getMonth()) return date1;
   if (date1.getMonth() > date2.getMonth()) return date2;
   // same month
-  if (date1.getDay() < date2.getDay()) return date1;
-  if (date1.getDay() > date2.getDay()) return date2;
+  if (date1.getDate() < date2.getDate()) return date1;
+  if (date1.getDate() > date2.getDate()) return date2;
   // same day
   return null;
 }