Improve DatabaseCore : fetch_all

This commit is contained in:
Dany wm 2023-12-07 21:43:06 +01:00 committed by sparkyx
parent aa6e2848af
commit b0603ebf5e

View file

@ -767,7 +767,7 @@ class DatabaseCore
static function fetch_all($ret)
{
return pg_fetch_all($ret);
return pg_fetch_all($ret,PGSQL_ASSOC);
}
/**