mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-27 15:54:29 +02:00
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
50e09102a9
commit
1a47cd15d4
@ -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>
|
2008-06-18 Esteban Sanchez <estebans@artica.es>
|
||||||
|
|
||||||
* include/functions_db.php: Added documentation to all the functions
|
* include/functions_db.php: Added documentation to all the functions
|
||||||
|
@ -1234,7 +1234,7 @@ function get_db_all_rows_sqlfree ($sql) {
|
|||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
while ($row = mysql_fetch_array ($result)) {
|
while ($row = mysql_fetch_array ($result)) {
|
||||||
array_push ($retval, &$row);
|
array_push ($retval, $row);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $retval;
|
return $retval;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user