Fixes for DB IO, DB general functions, JS core updates
DB IO - Update/Select/Insert checks are sane now and not reverse - UPDATE can now use RETURNING - meta table check in postgresql is supressing warning for not existing table and just returns false JS (edit) - update for the html element creation functions Basic: - SITE LANG settings added to change default lang based on vhost - log file id is now set more lienient via globals and not with a global constant DB Tables/Functions: - fix wrong general function and set uid function was missing
This commit is contained in:
@@ -350,7 +350,8 @@ class PgSQL
|
||||
// DESC : wrapper for pg_emta_data
|
||||
public function __dbMetaData($table)
|
||||
{
|
||||
return pg_meta_data($this->dbh, $table);
|
||||
// needs to prefixed with @ or it throws a warning on not existing table
|
||||
return @pg_meta_data($this->dbh, $table);
|
||||
}
|
||||
|
||||
// METHOD: __dbEscapeString
|
||||
|
||||
Reference in New Issue
Block a user