aboutsummaryrefslogtreecommitdiffstats
path: root/mod/regmod.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-01-04 22:17:58 -0800
committerFriendika <info@friendika.com>2011-01-04 22:17:58 -0800
commitbb0c24bd4fd159cc005f60a0808a4b37b91060b0 (patch)
tree01741f63f64cdd7f430fd70deba74cc510a20846 /mod/regmod.php
parent45c1559b38a54a8280b3339c0b1b30be1d7c473d (diff)
downloadvolse-hubzilla-bb0c24bd4fd159cc005f60a0808a4b37b91060b0.tar.gz
volse-hubzilla-bb0c24bd4fd159cc005f60a0808a4b37b91060b0.tar.bz2
volse-hubzilla-bb0c24bd4fd159cc005f60a0808a4b37b91060b0.zip
prevent admin hijacks
Diffstat (limited to 'mod/regmod.php')
-rw-r--r--mod/regmod.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/regmod.php b/mod/regmod.php
index 772351ac5..eabbec090 100644
--- a/mod/regmod.php
+++ b/mod/regmod.php
@@ -12,6 +12,11 @@ function regmod_content(&$a) {
return $o;
}
+ if((! (x($a->config,'admin_email'))) || ($a->config['admin_email'] !== $a->user['email'])) {
+ notice( t('Permission denied.') . EOL);
+ return '';
+ }
+
if($a->argc != 3)
killme();