Fixes for the new behaviour and set forms methods

This commit is contained in:
Antonio de la Rosa 2015-08-22 05:48:21 +02:00
parent f75ac6d78d
commit 9f35b00fed
7 changed files with 150 additions and 15 deletions

View file

@ -22,7 +22,7 @@
*
*/
function select_to_array_method_class($class, $where="", $arr_select=array(), $raw_query=0, $index_id='')
function select_to_array_method_class($class, $arr_select=array(), $raw_query=0, $index_id='')
{
$arr_return=array();
@ -43,7 +43,7 @@ function select_to_array_method_class($class, $where="", $arr_select=array(), $r
}
$query=$class->select($where, $arr_select, $raw_query);
$query=$class->select($arr_select, $raw_query);
while($arr_row=$class->fetch_array($query))
{