Browse Source

Update filters to work with new ban table

pull/40/head
Michael Foster 11 years ago
parent
commit
ce9431ba34
  1. 2
      inc/filters.php

2
inc/filters.php

@ -81,7 +81,7 @@ class Filter {
else
$all_boards = false;
$query = prepare("INSERT INTO `bans` VALUES (NULL, :ip, :mod, :set, :expires, :reason, :board)");
$query = prepare("INSERT INTO `bans` VALUES (NULL, :ip, :mod, :set, :expires, :reason, :board, 0)");
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
$query->bindValue(':mod', -1);
$query->bindValue(':set', time());

Loading…
Cancel
Save