diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-09-26 19:44:03 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-09-26 19:44:03 -0700 |
commit | 84d2ad8ebf0ae01f9bd193cd417fef9b2da3b680 (patch) | |
tree | b6973b2db4a22b1fbc050f7511ad421d1e533a06 /mod/notifications.php | |
parent | 34eedb503acad59d649f96d3250b40cc1c84047c (diff) | |
download | volse-hubzilla-84d2ad8ebf0ae01f9bd193cd417fef9b2da3b680.tar.gz volse-hubzilla-84d2ad8ebf0ae01f9bd193cd417fef9b2da3b680.tar.bz2 volse-hubzilla-84d2ad8ebf0ae01f9bd193cd417fef9b2da3b680.zip |
cleaned up ACL expansion to remove unwanted '0' elements
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 f38f5ae37..603c1117c 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -8,7 +8,7 @@ function notifications_post(&$a) { $request_id = (($a->argc > 1) ? $a->argv[1] : 0); - if($request_id == "all") + if($request_id === "all") return; if($request_id) { |