Additional check if the database object is initialized

This commit is contained in:
Michael 2017-10-10 22:25:38 +00:00
vanhempi 63e02eb57f
commit dbcd1d1ae3
1 muutettua tiedostoa jossa 3 lisäystä ja 0 poistoa

Näytä tiedosto

@ -126,6 +126,9 @@ class dba {
if (!is_object(self::$dbo)) {
global $db;
self::$dbo = $db;
if (!is_object(self::$dbo)) {
die('Database is uninitialized!');
}
}
}