diff --git a/inc/config.php b/inc/config.php index ec5cfd13..e0c2ae50 100644 --- a/inc/config.php +++ b/inc/config.php @@ -464,9 +464,6 @@ // http://www.php.net/manual/en/function.strftime.php $config['post_date'] = '%m/%d/%y (%a) %H:%M:%S'; - // Automatically convert all post times to users' local time using Javascript. - $config['javascript_local_time'] = false; - // Same as above, but used for "you are banned' pages. $config['ban_date'] = '%A %e %B, %Y'; diff --git a/templates/index.html b/templates/index.html index 6c9b8dab..ae94f92a 100644 --- a/templates/index.html +++ b/templates/index.html @@ -45,10 +45,6 @@ {% if mod %}{% endif %} {{ body }} - - {% if config.javascript_local_time %} - - {% endif %} {% include 'report_delete.html' %}
{{ btn.prev }} {% for page in pages %} diff --git a/templates/main.js b/templates/main.js index 1113617e..42d38eb9 100644 --- a/templates/main.js +++ b/templates/main.js @@ -168,41 +168,6 @@ function init_expanding() { } } -{% endraw %} -{% if config.javascript_local_time %} -{% raw %} -function init_localtime(){ - var iso8601 = function iso8601(s) { - s = s.replace(/\.\d\d\d+/,""); // remove milliseconds - s = s.replace(/-/,"/").replace(/-/,"/"); - s = s.replace(/T/," ").replace(/Z/," UTC"); - s = s.replace(/([\+\-]\d\d)\:?(\d\d)/," $1$2"); // -04:00 -> -0400 - return new Date(s); - }; - var zeropad = function(num, count) { - return [Math.pow(10, count - num.toString().length), num].join('').substr(1); - }; - - var times = document.getElementsByTagName('time'); - for (var i = 0; i < times.length ; i++) { - if(!times[i].textContent.match(/^\d+\/\d+\/\d+ \(\w+\) \d+:\d+:\d+$/)) { - continue; - } - - var t = iso8601(times[i].getAttribute('datetime')); - - times[i].textContent = - // date - zeropad(t.getMonth() + 1, 2) + "/" + zeropad(t.getDate(), 2) + "/" + t.getFullYear().toString().substring(2) + - " (" + ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"][t.getDay()] + ") " + - // time - zeropad(t.getHours(), 2) + ":" + zeropad(t.getMinutes(), 2) + ":" + zeropad(t.getSeconds(), 2); - } -}; -{% endraw %} -{% endif %} -{% raw %} - function init() { newElement = document.createElement('div'); newElement.className = 'styles'; diff --git a/templates/thread.html b/templates/thread.html index 9f318d66..680bd004 100644 --- a/templates/thread.html +++ b/templates/thread.html @@ -48,9 +48,6 @@ {% if mod %}{% endif %} {{ body }} - {% if config.javascript_local_time %} - - {% endif %} {% include 'report_delete.html' %} [{% trans %}Return{% endtrans %}]