Merge remote-tracking branch 'origin/support/3.0' into develop

This commit is contained in:
Molkobain
2022-08-12 11:15:30 +02:00

View File

@@ -282,11 +282,11 @@ class NavigationMenu extends UIBlock implements iKeyboardShortcut
// Try if a custom URL was set in the configuration file
if(MetaModel::GetConfig()->IsCustomValue($sPropCode)) {
$this->sAppIconLink = MetaModel::GetConfig()->Get('app_icon_url');
$this->sAppIconLink = MetaModel::GetConfig()->Get($sPropCode);
}
// Otherwise use the home page
else {
$this->sAppIconLink = MetaModel::GetConfig()->Get('app_root_url');
$this->sAppIconLink = utils::GetAbsoluteUrlAppRoot();
}
}