From 87db88254b1206b92d78c9e015570e1545beb1a8 Mon Sep 17 00:00:00 2001 From: acognet Date: Mon, 17 Oct 2022 21:34:26 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B04517=20-=20PHP=208.1=20compatibility=20-?= =?UTF-8?q?=20Fix=20uppercase?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/applicationcontext.class.inc.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/application/applicationcontext.class.inc.php b/application/applicationcontext.class.inc.php index 45113a189..da68ff8d6 100644 --- a/application/applicationcontext.class.inc.php +++ b/application/applicationcontext.class.inc.php @@ -380,16 +380,15 @@ class ApplicationContext $sUrlMakerClass = self::GetUrlMakerClass(); } $sUrl = call_user_func(array($sUrlMakerClass, 'MakeObjectUrl'), $sObjClass, $sObjKey); - if (utils::strlen($sUrl) > 0) { + if (utils::StrLen($sUrl) > 0) { if ($bWithNavigationContext) { return $sUrl."&".$oAppContext->GetForLink(); } else { return $sUrl; } - } else - { - return ''; - } + } else { + return ''; + } } /**