summaryrefslogtreecommitdiffstats
path: root/image.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-12-25 02:47:56 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-12-25 02:47:56 +0000
commita2c471bd18fb5e38763bb0dfd563aca3a54aed1b (patch)
treec110bd8da54fd0006cd2f32ea2f1c32f9582395b /image.php
parent74ff21838d600bc36014953db8e6c51db7ce33a4 (diff)
downloadampache-a2c471bd18fb5e38763bb0dfd563aca3a54aed1b.tar.gz
ampache-a2c471bd18fb5e38763bb0dfd563aca3a54aed1b.tar.bz2
ampache-a2c471bd18fb5e38763bb0dfd563aca3a54aed1b.zip
reimplemented the session function check
Diffstat (limited to 'image.php')
-rw-r--r--image.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/image.php b/image.php
index da443b0f..1120329d 100644
--- a/image.php
+++ b/image.php
@@ -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;
}