From eb408e2ea4c54922d5e5cd3dd2f5a541d7b7a730 Mon Sep 17 00:00:00 2001 From: acognet Date: Wed, 29 Jun 2022 09:17:08 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B04517=20-=20PHP=208.1:=20Fix=20static=20m?= =?UTF-8?q?ethod=20in=20a=20trait?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sources/Application/UI/Base/tJSRefreshCallback.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/Application/UI/Base/tJSRefreshCallback.php b/sources/Application/UI/Base/tJSRefreshCallback.php index fd25dfd25..6b609b327 100644 --- a/sources/Application/UI/Base/tJSRefreshCallback.php +++ b/sources/Application/UI/Base/tJSRefreshCallback.php @@ -40,7 +40,7 @@ trait tJSRefreshCallback public function GetJSRefreshCallback(): string { $sJSRefresh = $this->GetJSRefresh(); - tJSRefreshCallback::GetRecursiveJSRefresh($this, $sJSRefresh); + self::GetRecursiveJSRefresh($this, $sJSRefresh); return $sJSRefresh; } @@ -60,7 +60,7 @@ trait tJSRefreshCallback if ($usingTrait && $oSubBlock->GetJSRefresh() != "") { $sJSRefresh = $oSubBlock->GetJSRefresh()."\n".$sJSRefresh; } - tJSRefreshCallback::GetRecursiveJSRefresh($oSubBlock, $sJSRefresh); + self::GetRecursiveJSRefresh($oSubBlock, $sJSRefresh); } return $sJSRefresh;