diff options
Diffstat (limited to 'mod/ping.php')
-rw-r--r-- | mod/ping.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/ping.php b/mod/ping.php index 00c4a3105..cb067f3fe 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -25,8 +25,8 @@ function ping_init(&$a) { ); $intro = $r[0]['total']; - if ($a->config['register_policy'] = REGISTER_APPROVE && - $a->config['admin_email'] = $a->user['email']){ + if ($a->config['register_policy'] == REGISTER_APPROVE && + $a->config['admin_email'] === $a->user['email']){ $r = q("SELECT COUNT(*) AS `total` FROM `register`"); $register = $r[0]['total']; } else { |