]> git.mxchange.org Git - friendica.git/commitdiff
notifications - correct boolean variable checking
authorrabuzarus <>
Sun, 7 Aug 2016 10:26:49 +0000 (12:26 +0200)
committerrabuzarus <>
Sun, 7 Aug 2016 10:26:49 +0000 (12:26 +0200)
include/NotificationsManager.php
mod/notifications.php

index 6962d02cc082c11351d42d27fcef789045b688ad..3b7cbdfc999e89d7086eaae71242d829d790b22c 100644 (file)
@@ -662,7 +662,7 @@ class NotificationsManager {
        private function introTotal($all = false) {
                $sql_extra = "";
 
-               if($all === false)
+               if(!$all)
                        $sql_extra = " AND `ignore` = 0 ";
 
                $r = q("SELECT COUNT(*) AS `total` FROM `intro`
@@ -696,7 +696,7 @@ class NotificationsManager {
                $notifs = array();
                $sql_extra = "";
 
-               if($all === false)
+               if(!$all)
                        $sql_extra = " AND `ignore` = 0 ";
 
                /// @todo Fetch contact details by "get_contact_details_by_url" instead of queries to contact, fcontact and gcontact
index 01dce2f447df1b9ce2fb6e2bbc641c106a4a2dcb..d43e2cc04f95a68aab760207fa4242b9f7a55203 100644 (file)
@@ -148,8 +148,8 @@ function notifications_content(&$a) {
 
                // The link to switch between ignored and normal connection requests
                $notif_show_lnk = array(
-                       'href' => ($all === false ? 'notifications/intros/all' : 'notifications/intros' ),
-                       'text' => ($all === false ? t('Show Ignored Requests') : t('Hide Ignored Requests'))
+                       'href' => (!$all ? 'notifications/intros/all' : 'notifications/intros' ),
+                       'text' => (!$all ? t('Show Ignored Requests') : t('Hide Ignored Requests'))
                );
 
                // Loop through all introduction notifications.This creates an array with the output html for each