aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Regapr.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-03-28 10:17:54 +0000
committerMario <mario@mariovavti.com>2021-03-28 10:17:54 +0000
commit85b6e352d41580918c84298790916786f384f8b5 (patch)
treeb331cba74ee5c11f5f48bd87a1bd5386a89b3721 /Zotlabs/Module/Regapr.php
parentc389aee112e454e4cdf003da430d9bd6938c224f (diff)
downloadvolse-hubzilla-85b6e352d41580918c84298790916786f384f8b5.tar.gz
volse-hubzilla-85b6e352d41580918c84298790916786f384f8b5.tar.bz2
volse-hubzilla-85b6e352d41580918c84298790916786f384f8b5.zip
air: fixes
Diffstat (limited to 'Zotlabs/Module/Regapr.php')
-rw-r--r--Zotlabs/Module/Regapr.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/Zotlabs/Module/Regapr.php b/Zotlabs/Module/Regapr.php
deleted file mode 100644
index 9e6cb1de8..000000000
--- a/Zotlabs/Module/Regapr.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-namespace Zotlabs\Module;
-
-use Zotlabs\Web\Controller;
-
-class Regapr extends Controller {
-
- function get() {
-
- $o = '';
-
- $did2 = hex2bin(argv(1));
-
- if(!$did2)
- return $o;
-
- $o .= 'Thank you for registering!' . PHP_EOL;
- $o .= 'After your account has been approved by our administrator you will be able to login with your ID' . PHP_EOL;
- $o .= $did2 . PHP_EOL;
- $o .= 'and your provided password.';
-
- return $o;
-
- }
-
-}