From 7c7e996967037e995289ac47e6557a8bd0f2b4e9 Mon Sep 17 00:00:00 2001 From: Miraty Date: Mon, 23 Jan 2023 01:16:15 +0100 Subject: [PATCH] fix: pg-act/auth/approval.php syntax --- pg-act/auth/approval.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pg-act/auth/approval.php b/pg-act/auth/approval.php index 45bef63..091c3e1 100644 --- a/pg-act/auth/approval.php +++ b/pg-act/auth/approval.php @@ -4,7 +4,7 @@ if ($_SESSION['type'] !== 'testing') output(403, _('This account is already approved.')); if (isset(query('select', 'approval-keys', ['key' => $_POST['key']], 'key')[0]) !== true) - output(403, _('This approval key is not available. It has been mistyped, used for another account, or has expired.'); + output(403, _('This approval key is not available. It has been mistyped, used for another account, or has expired.')); query('delete', 'approval-keys', ['key' => $_POST['key']]);