From ad8226d549f40a1ae1ea47a83778afffb9230042 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 20 Sep 2018 12:10:27 +0200 Subject: deal with the ability to provide settings url in apd files in include/nav.php --- include/nav.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/include/nav.php b/include/nav.php index 9afba7945..f8d6f2438 100644 --- a/include/nav.php +++ b/include/nav.php @@ -206,7 +206,14 @@ function nav($template = 'default') { ); if($active_app) { - $url = $active_app[0]['app_url']; + if(strpos($active_app[0]['app_url'], ',')) { + $urls = explode(',', $active_app[0]['app_url']); + $url = trim($urls[0]); + $settings_url = trim($urls[1]); + } + else { + $url = $active_app[0]['app_url']; + } } } -- cgit v1.2.3