Merge branch 'master' of https://github.com/FH-Complete/FHC-Core into feature-7529/Bundesadler_auf_Urkunden_im_Selfservice

This commit is contained in:
Cris
2020-05-25 17:06:05 +02:00
6 changed files with 121 additions and 19 deletions
+3 -3
View File
@@ -172,12 +172,12 @@ class basis_db extends db
return pg_result_seek($result, $offset);
}
public function db_fetch_array($result=null)
public function db_fetch_array($result=null, $row=null, $result_type=PGSQL_NUM)
{
if(is_null($result))
return pg_fetch_array($this->db_result);
return pg_fetch_array($this->db_result, $row, $result_type);
else
return pg_fetch_array($result);
return pg_fetch_array($result, $row, $result_type);
}
public function db_num_fields($result=null)