X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/5545d874624b35a364e26e140a9538450ed6709f..e1c30044b1fa083d89b4bf8f0265fb2785583411:/lib/functions.js.php?ds=inline

diff --git a/lib/functions.js.php b/lib/functions.js.php
index e981e35..31cefe3 100644
--- a/lib/functions.js.php
+++ b/lib/functions.js.php
@@ -17,9 +17,11 @@
  *  You should have received a copy of the GNU Affero General Public License
  *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
+
 header('Content-Type: text/javascript');
+
 define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/../');
-require (JIRAFEAU_ROOT . 'lib/config.original.php');
+
 require (JIRAFEAU_ROOT . 'lib/settings.php');
 require (JIRAFEAU_ROOT . 'lib/functions.php');
 require (JIRAFEAU_ROOT . 'lib/lang.php');
@@ -204,7 +206,7 @@ function add_time_string_to_date(d, time)
     {
         return false;
     }
-    
+
     if (time == 'minute')
     {
         d.setSeconds (d.getSeconds() + 60);
@@ -230,6 +232,11 @@ function add_time_string_to_date(d, time)
         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);