aboutsummaryrefslogtreecommitdiffstats
path: root/mod/regver.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/regver.php')
-rw-r--r--mod/regver.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/mod/regver.php b/mod/regver.php
deleted file mode 100644
index a26843376..000000000
--- a/mod/regver.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-function regver_content(&$a) {
-
- global $lang;
-
- $_SESSION['return_url'] = App::$cmd;
-
- if(argc() != 3)
- killme();
-
- $cmd = argv(1);
- $hash = argv(2);
-
- if($cmd === 'deny') {
- if (! account_deny($hash)) killme();
- }
-
- if($cmd === 'allow') {
- if (! account_approve($hash)) killme();
- }
-}