From b7e121ccf7072858622e1ee544f7530c89556ffe Mon Sep 17 00:00:00 2001 From: zottel Date: Tue, 6 Nov 2012 08:16:08 +0100 Subject: [PATCH 1/1] Forgot to commit the changes (regarding fermionic's comments) in notifier.php --- include/notifier.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/notifier.php b/include/notifier.php index a999c3297b..2f4120da25 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -136,11 +136,15 @@ function notifier_run($argv, $argc){ } elseif($cmd === 'removeme') { $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($item_id)); + if (! $r) + return; $user = $r[0]; $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1", intval($item_id)); + if (! $r) + return; $self = $r[0]; $r = q("SELECT * FROM `contact` WHERE `self` = 0 AND `uid` = %d", intval($item_id)); - if(! count($r)) + if(! $r) return; require_once('include/Contact.php'); foreach($r as $contact) { -- 2.39.2