diff options
author | Friendika <info@friendika.com> | 2011-01-04 22:17:58 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-01-04 22:17:58 -0800 |
commit | bb0c24bd4fd159cc005f60a0808a4b37b91060b0 (patch) | |
tree | 01741f63f64cdd7f430fd70deba74cc510a20846 /mod/notifications.php | |
parent | 45c1559b38a54a8280b3339c0b1b30be1d7c473d (diff) | |
download | volse-hubzilla-bb0c24bd4fd159cc005f60a0808a4b37b91060b0.tar.gz volse-hubzilla-bb0c24bd4fd159cc005f60a0808a4b37b91060b0.tar.bz2 volse-hubzilla-bb0c24bd4fd159cc005f60a0808a4b37b91060b0.zip |
prevent admin hijacks
Diffstat (limited to 'mod/notifications.php')
-rw-r--r-- | mod/notifications.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/notifications.php b/mod/notifications.php index f11676ebf..c425d092e 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -127,7 +127,7 @@ function notifications_content(&$a) { notice( t('No notifications.') . EOL); if ($a->config['register_policy'] = REGISTER_APPROVE && - $a->config['admin_email'] = $a->user['email']){ + $a->config['admin_email'] === $a->user['email']){ $o .= load_view_file('view/registrations-top.tpl'); $r = q("SELECT `register`.*, `contact`.`name`, `user`.`email` |