diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-22 16:47:22 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-22 16:47:22 +0000 |
commit | 472072028560aa178211ae248fc0dad4526533c7 (patch) | |
tree | 247111303a40c5e07fad73d10a3b4aff868c7c8d /index.php | |
parent | b337d84d9af8a7db8e0171c9c0f4bedeae0ef05e (diff) | |
download | ampache-472072028560aa178211ae248fc0dad4526533c7.tar.gz ampache-472072028560aa178211ae248fc0dad4526533c7.tar.bz2 ampache-472072028560aa178211ae248fc0dad4526533c7.zip |
corrected ajax but introduced with prototype, tweaked how ajax stuff is done, now uses ajax:: class also replaced player with a logout icon
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'; |