diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-09-26 17:24:20 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-09-26 17:24:20 -0700 |
commit | 34eedb503acad59d649f96d3250b40cc1c84047c (patch) | |
tree | 95f0eb71d4db446743f5043ce8009fcc1566d9fa /include/notifier.php | |
parent | 1105cdb0654b6f9bb03e686b351da1cdaa8d8f4f (diff) | |
download | volse-hubzilla-34eedb503acad59d649f96d3250b40cc1c84047c.tar.gz volse-hubzilla-34eedb503acad59d649f96d3250b40cc1c84047c.tar.bz2 volse-hubzilla-34eedb503acad59d649f96d3250b40cc1c84047c.zip |
stronger type checking on comparisons
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/notifier.php b/include/notifier.php index 571677aa3..2124c18e7 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -39,7 +39,7 @@ $recipients = array(); - if($cmd == 'mail') { + if($cmd === 'mail') { $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1", intval($item_id) @@ -89,7 +89,7 @@ $parent = $items[0]; - if($parent['type'] == 'remote') { + if($parent['type'] === 'remote') { // local followup to remote post $followup = true; $conversant_str = dbesc($parent['contact-id']); @@ -152,7 +152,7 @@ '$namdate' => xmlify(datetime_convert('UTC','UTC',$owner['name-date'] . '+00:00' , ATOM_TIME)) )); - if($cmd == 'mail') { + if($cmd === 'mail') { $atom .= replace_macros($mail_template, array( '$name' => xmlify($owner['name']), '$profile_page' => xmlify($owner['url']), @@ -287,7 +287,7 @@ break; } - if(($cmd == 'mail') && ($deliver_status == 0)) { + if(($cmd === 'mail') && ($deliver_status == 0)) { $r = q("UPDATE `mail` SET `delivered` = 1 WHERE `id` = %d LIMIT 1", intval($item_id) ); |