missing global $config;

This commit is contained in:
Savetheinternet 2011-12-06 03:02:26 +11:00
parent d454fc6423
commit 38c53c9002

View File

@ -103,7 +103,7 @@
} }
function modLog($action, $_board=null) { function modLog($action, $_board=null) {
global $mod, $board; global $mod, $board, $config;
$query = prepare("INSERT INTO `modlogs` VALUES (:id, :ip, :board, :time, :text)"); $query = prepare("INSERT INTO `modlogs` VALUES (:id, :ip, :board, :time, :text)");
$query->bindValue(':id', $mod['id'], PDO::PARAM_INT); $query->bindValue(':id', $mod['id'], PDO::PARAM_INT);
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']); $query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);