Merge pull request #611 from fermionic/20130209-cant-select-individual-contacts
don't change to string in prune_deadguys()
This commit is contained in:
commit
8f2087a198
|
@ -239,7 +239,7 @@ function prune_deadguys($arr) {
|
||||||
if($r) {
|
if($r) {
|
||||||
$ret = array();
|
$ret = array();
|
||||||
foreach($r as $rr)
|
foreach($r as $rr)
|
||||||
$ret[] = $rr['id'];
|
$ret[] = intval($rr['id']);
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
return array();
|
return array();
|
||||||
|
|
Loading…
Reference in a new issue