From e58876a0ee6a6d78e6ded457b7efa0a0b13b3b4e Mon Sep 17 00:00:00 2001 From: Zankaria Date: Sun, 6 Oct 2024 11:25:57 +0200 Subject: [PATCH] mod.php: add missing context parameter --- mod.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod.php b/mod.php index ff3c753b..ef336747 100644 --- a/mod.php +++ b/mod.php @@ -173,7 +173,7 @@ foreach ($pages as $uri => $handler) { if ($secure_post_only) error($config['error']['csrf']); else { - mod_confirm(substr($query, 1)); + mod_confirm($ctx, substr($query, 1)); exit; } }