]> git.p6c8.net - jirafeau.git/blobdiff - lib/functions.js.php
Add note about admin password hashing
[jirafeau.git] / lib / functions.js.php
index e8a6bb18048f1ce1c9b19d40c93be887dd63d107..7a1c5af373dc17691f2981f7e9f245be4477b629 100644 (file)
@@ -206,7 +206,7 @@ function add_time_string_to_date(d, time)
     {
         return false;
     }
     {
         return false;
     }
-    
+
     if (time == 'minute')
     {
         d.setSeconds (d.getSeconds() + 60);
     if (time == 'minute')
     {
         d.setSeconds (d.getSeconds() + 60);
@@ -232,6 +232,11 @@ function add_time_string_to_date(d, time)
         d.setSeconds (d.getSeconds() + 2419200);
         return true;
     }
         d.setSeconds (d.getSeconds() + 2419200);
         return true;
     }
+    if (time == 'quarter')
+    {
+        d.setSeconds (d.getSeconds() + 7257600);
+        return true;
+    }
     if (time == 'year')
     {
         d.setSeconds (d.getSeconds() + 29030400);
     if (time == 'year')
     {
         d.setSeconds (d.getSeconds() + 29030400);

patrick-canterino.de