From d32f2c43e867eb79e656f290ef46d68d94de9469 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Wed, 13 Jul 2011 21:54:52 +1000 Subject: [PATCH] don't ignore config[cookies][mod] --- inc/mod.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/mod.php b/inc/mod.php index a764cfbc..0887cd07 100644 --- a/inc/mod.php +++ b/inc/mod.php @@ -115,9 +115,9 @@ $query->execute() or error(db_error($query)); } - if(isset($_COOKIE['mod']) && isset($_SESSION['mod']) && is_array($_SESSION['mod'])) { + if(isset($_COOKIE[$config['cookies']['mod']]) && isset($_SESSION['mod']) && is_array($_SESSION['mod'])) { // Should be username:session hash - $cookie = explode(':', $_COOKIE['mod']); + $cookie = explode(':', $_COOKIE[$config['cookies']['mod']]); if(count($cookie) != 2) { destroyCookies(); error($config['error']['malformed']);