1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-12 01:50:48 +01:00

add missing break in switch/case for dismiss post

fixes bug in which Dismiss Post worked identically to Dismiss+
This commit is contained in:
RealAngeleno 2023-06-22 04:49:22 -07:00 committed by GitHub
parent 07f998f9eb
commit 691ce02cbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2424,6 +2424,7 @@ function mod_report_dismiss($id, $action) {
$query = prepare("DELETE FROM ``reports`` WHERE `post` = :post");
$query->bindValue(':post', $post);
modLog("Dismissed all reports for post #{$id}", $board);
break;
case '&all':
if (!hasPermission($config['mod']['report_dismiss_ip'], $board))
error($config['error']['noaccess']);