From c68af19e11d9c7b17a070ddd08099ab4eaf22525 Mon Sep 17 00:00:00 2001 From: Benjamin Southall Date: Sat, 31 Aug 2019 01:51:56 +1000 Subject: [PATCH] Fixes delete board regression thanks, as per https://github.com/Circlepuller/Tinyboard/commit/31e27a51c20ccceb59ed20c8cac829bfac1ce710 --- inc/mod/pages.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/mod/pages.php b/inc/mod/pages.php index 93e2e033..650f854d 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -374,12 +374,12 @@ function mod_edit_board($boardName) { // Clear reports $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)); // Delete from table $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 = prepare("SELECT `board`, `post` FROM ``cites`` WHERE `target_board` = :board ORDER BY `board`");