X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/d71d969adf8bb35cd6dc8d0ebbe4d7d194e91504..1bcb50020a8fe38adce4c89f366060598eda65b8:/lib/functions.js.php?ds=inline diff --git a/lib/functions.js.php b/lib/functions.js.php index 24be13f..7a1c5af 100644 --- a/lib/functions.js.php +++ b/lib/functions.js.php @@ -18,6 +18,8 @@ * along with this program. If not, see . */ +header('Content-Type: text/javascript'); + define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/../'); require (JIRAFEAU_ROOT . 'lib/config.original.php'); require (JIRAFEAU_ROOT . 'lib/settings.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);