diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -31,11 +31,13 @@ $action = scrub_in($_REQUEST['action']); * going to let them break their servers */ if (Config::get('refresh_limit') > 5) { +/* $refresh_limit = Config::get('refresh_limit'); $ajax_url = Config::get('ajax_url') . '?action=reloadnp' . Config::get('ajax_info'); - /* Can't have the & stuff in the Javascript */ + $ajax_url = str_replace("&","&",$ajax_url); require_once Config::get('prefix') . '/templates/javascript_refresh.inc.php'; +*/ } require_once Config::get('prefix') . '/templates/show_index.inc.php'; |