From f257569713aa61b8510e6205a490eeae9c11ba5c Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 4 Jan 2011 23:31:51 -0800 Subject: [PATCH] couple minor issues with reg queue --- mod/notifications.php | 2 +- mod/ping.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/notifications.php b/mod/notifications.php index c425d092e..ef7202363 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -126,7 +126,7 @@ function notifications_content(&$a) { else notice( t('No notifications.') . EOL); - if ($a->config['register_policy'] = REGISTER_APPROVE && + if ($a->config['register_policy'] == REGISTER_APPROVE && $a->config['admin_email'] === $a->user['email']){ $o .= load_view_file('view/registrations-top.tpl'); 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 {