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:
parent
897f5f3ece
commit
088ba4200b
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue