- implemented Memcached (untested though (tough luck trying to get it to run using win))
 - added config value to select caching method (default: filecache; setting debug to 1 will still disable caching)
 - implemented url-param 'refresh' to clear cache for this page
This commit is contained in:
Sarjuuk
2014-09-10 23:58:23 +02:00
parent 2e18bf0d3e
commit 70f703b4b2
45 changed files with 525 additions and 111 deletions

View File

@@ -19785,7 +19785,7 @@ function g_modifyUrl(url, params, opt) {
// Polish
url = url.replace('?&', '?');
url = url.replace(/&&/g, '&');
url = url.replace(/\/\?/g, '/');
url = url.replace(/\/\?/g, '?');
url = url.replace(/(&|\?)+$/, ''); // Remove trailing & and ? characters
return url + hash;

File diff suppressed because one or more lines are too long