Minor updates for set checks, example update for host config
Host config example for a pre-set config array to attach. Update fixes for admin_set_paths, ACL\Login unset variable/index check
This commit is contained in:
@@ -152,7 +152,7 @@ class Login extends \CoreLibs\DB\IO
|
||||
if (defined('LOGIN_DB_SCHEMA')) {
|
||||
/** @phan-suppress-next-line PhanUndeclaredConstant */
|
||||
$SCHEMA = LOGIN_DB_SCHEMA;
|
||||
} elseif ($db_config['db_schema']) {
|
||||
} elseif (isset($db_config['db_schema']) && $db_config['db_schema']) {
|
||||
$SCHEMA = $db_config['db_schema'];
|
||||
} elseif (defined('PUBLIC_SCHEMA')) {
|
||||
$SCHEMA = PUBLIC_SCHEMA;
|
||||
|
||||
@@ -94,7 +94,6 @@
|
||||
|
||||
namespace CoreLibs;
|
||||
|
||||
|
||||
/** Basic core class declaration */
|
||||
class Basic
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user