Forgot to commit the changes (regarding fermionic's comments) in notifier.php

This commit is contained in:
zottel 2012-11-06 08:16:08 +01:00
parent 2093fa8b3f
commit b7e121ccf7
1 changed files with 5 additions and 1 deletions

View File

@ -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) {