aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mod/notifications.php2
-rw-r--r--mod/ping.php4
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 {