Fix wrong urlpath determination

This commit is contained in:
Hypolite Petovan 2018-06-30 11:11:22 -04:00
parent 6d4615fabd
commit 73b4e0552d
1 changed files with 3 additions and 2 deletions

View File

@ -143,14 +143,15 @@ class App
$this->basepath = rtrim($basepath, DIRECTORY_SEPARATOR);
$this->determineUrlPath();
// The order of the following calls is important to ensure proper initialization
$this->loadConfigFiles();
$this->loadDatabase();
$this->determineMode();
$this->determineUrlPath();
if ($this->mode === self::MODE_NORMAL) {
Core\Addon::loadHooks();