aboutsummaryrefslogtreecommitdiffstats
path: root/mod/regver.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/regver.php')
-rw-r--r--mod/regver.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/regver.php b/mod/regver.php
index c3ade2ee1..78f146ec5 100644
--- a/mod/regver.php
+++ b/mod/regver.php
@@ -13,10 +13,10 @@ function regver_content(&$a) {
$hash = argv(2);
if($cmd === 'deny') {
- if (!user_deny($hash)) killme();
+ if (! account_deny($hash)) killme();
}
if($cmd === 'allow') {
- if (!user_approve($hash)) killme();
+ if (! account_approve($hash)) killme();
}
}