Do not check for any config file, just the directory to show the login-warning
refs #7163
This commit is contained in:
parent
b27d1d0058
commit
2eb9a771c9
|
@ -146,7 +146,7 @@ class AuthenticationController extends ActionController
|
|||
$this->view->errorInfo = $e->getMessage();
|
||||
}
|
||||
|
||||
$this->view->configMissing = Config::app()->isEmpty();
|
||||
$this->view->configMissing = is_dir(Config::$configDir) === false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue