diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 332cbab31d..c55b663d45 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2008-06-18 Esteban Sanchez + + * include/functions_db.php: Fixed an error on + get_db_all_rows_sqlfree(). + 2008-06-18 Esteban Sanchez * include/functions_db.php: Added documentation to all the functions diff --git a/pandora_console/include/functions_db.php b/pandora_console/include/functions_db.php index 6d458c72bf..024f38c2ed 100644 --- a/pandora_console/include/functions_db.php +++ b/pandora_console/include/functions_db.php @@ -1234,7 +1234,7 @@ function get_db_all_rows_sqlfree ($sql) { return array(); } while ($row = mysql_fetch_array ($result)) { - array_push ($retval, &$row); + array_push ($retval, $row); } return $retval;