diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-25 02:47:56 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-25 02:47:56 +0000 |
commit | a2c471bd18fb5e38763bb0dfd563aca3a54aed1b (patch) | |
tree | c110bd8da54fd0006cd2f32ea2f1c32f9582395b /image.php | |
parent | 74ff21838d600bc36014953db8e6c51db7ce33a4 (diff) | |
download | ampache-a2c471bd18fb5e38763bb0dfd563aca3a54aed1b.tar.gz ampache-a2c471bd18fb5e38763bb0dfd563aca3a54aed1b.tar.bz2 ampache-a2c471bd18fb5e38763bb0dfd563aca3a54aed1b.zip |
reimplemented the session function check
Diffstat (limited to 'image.php')
-rw-r--r-- | image.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ require 'lib/init.php'; // Check to see if they've got an interface session or a valid API session, if not GTFO if (!vauth::session_exists('interface',$_COOKIE[Config::get('session_name')]) AND !vauth::session_exists('api',$_REQUEST['auth'])) { - debug_event('DENIED','Image Access from Sid:' . $_REQUEST['sid'] . ' OR Auth:' . $_REQUEST['auth'],'1'); + debug_event('DENIED','Image Access, Checked Cookie Session and Auth:' . $_REQUEST['auth'],'1'); exit; } |