Browse Source

missing `global $config;`

pull/40/head
Savetheinternet 13 years ago
parent
commit
38c53c9002
  1. 2
      inc/mod.php

2
inc/mod.php

@ -103,7 +103,7 @@
}
function modLog($action, $_board=null) {
global $mod, $board;
global $mod, $board, $config;
$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']);

Loading…
Cancel
Save