2008-06-18 Esteban Sanchez <estebans@artica.es>

* include/functions_db.php: Fixed an error on
        get_db_all_rows_sqlfree().



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@883 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
Esteban Sanchez 2008-06-19 13:58:23 +00:00
parent 897f5f3ece
commit 088ba4200b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-06-18 Esteban Sanchez <estebans@artica.es>
* include/functions_db.php: Fixed an error on
get_db_all_rows_sqlfree().
2008-06-18 Esteban Sanchez <estebans@artica.es>
* include/functions_db.php: Added documentation to all the functions

View File

@ -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;