Fixes delete board regression thanks, as per 31e27a51c2

This commit is contained in:
Benjamin Southall 2019-08-31 01:51:56 +10:00
parent 2b741c7477
commit c68af19e11

View File

@ -374,12 +374,12 @@ function mod_edit_board($boardName) {
// Clear reports // Clear reports
$query = prepare('DELETE FROM ``reports`` WHERE `board` = :id'); $query = prepare('DELETE FROM ``reports`` WHERE `board` = :id');
$query->bindValue(':id', $board['uri'], PDO::PARAM_INT); $query->bindValue(':id', $board['uri'], PDO::PARAM_STR);
$query->execute() or error(db_error($query)); $query->execute() or error(db_error($query));
// Delete from table // Delete from table
$query = prepare('DELETE FROM ``boards`` WHERE `uri` = :uri'); $query = prepare('DELETE FROM ``boards`` WHERE `uri` = :uri');
$query->bindValue(':uri', $board['uri'], PDO::PARAM_INT); $query->bindValue(':uri', $board['uri'], PDO::PARAM_STR);
$query->execute() or error(db_error($query)); $query->execute() or error(db_error($query));
$query = prepare("SELECT `board`, `post` FROM ``cites`` WHERE `target_board` = :board ORDER BY `board`"); $query = prepare("SELECT `board`, `post` FROM ``cites`` WHERE `target_board` = :board ORDER BY `board`");