Merge pull request #611 from fermionic/20130209-cant-select-individual-contacts

don't change to string in prune_deadguys()
This commit is contained in:
fermionic 2013-02-10 19:29:39 -08:00
commit 8f2087a198
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ function prune_deadguys($arr) {
if($r) {
$ret = array();
foreach($r as $rr)
$ret[] = $rr['id'];
$ret[] = intval($rr['id']);
return $ret;
}
return array();