change db_filter function to use less memory

This commit is contained in:
Timothy Warren 2012-05-14 12:34:12 -04:00
parent 3da9cd9c19
commit bf3b072124
2 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ function db_filter($array, $index)
{
$new_array = array();
foreach($array as $a)
foreach($array as &$a)
{
$new_array[] = $a[$index];
}

Binary file not shown.