浏览代码

fix: pg-act/auth/approval.php syntax

Miraty 2 年之前
父节点
当前提交
7c7e996967
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pg-act/auth/approval.php

+ 1 - 1
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']]);