From 44aeb4d97d472a12669a6f686c7011e1e71e446b Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Wed, 30 Mar 2011 16:56:26 +1100 Subject: [PATCH] Show board in modlog on report dismissing --- inc/mod.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/inc/mod.php b/inc/mod.php index bce9e206..77c3960c 100644 --- a/inc/mod.php +++ b/inc/mod.php @@ -73,14 +73,16 @@ return false; } - function modLog($action) { + function modLog($action, $_board=null) { global $mod, $board; $query = prepare("INSERT INTO `modlogs` VALUES (:id, :ip, :board, :time, :text)"); $query->bindValue(':id', $mod['id'], PDO::PARAM_INT); $query->bindValue(':ip', $_SERVER['REMOTE_ADDR']); $query->bindValue(':time', time(), PDO::PARAM_INT); $query->bindValue(':text', $action); - if(isset($board)) + if(isset($_board)) + $query->bindValue(':board', $_board); + elseif(isset($board)) $query->bindValue(':board', $board['id']); else $query->bindValue(':board', null, PDO::PARAM_NULL);