1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-04 02:09:23 +02:00

fixed ajax requests with invalid session not causing logout

This commit is contained in:
Karl 'vollmerk' Vollmer 2007-12-10 20:28:47 +00:00
parent c13392b861
commit c0f55e26b2
5 changed files with 21 additions and 64 deletions

View file

@ -92,6 +92,11 @@ function reload_util(target) {
document.getElementById('util_iframe').src = document.getElementById('util_iframe').src;
}
// Log them out
function reload_logout(target) {
window.location = target;
}
function popup_art(url) {
var newwindow;
newwindow=window.open(url, "ampache_art", "menubar=no,toolbar=no,location=no,directories=no");