From 8945227784d20953e922a4f809ae3bc7bb03dbbe Mon Sep 17 00:00:00 2001 From: Marcin Haba Date: Tue, 4 Jul 2023 09:56:11 +0200 Subject: [PATCH] baculum: Fix support for PHP 5.4 in web interface layer --- gui/baculum/protected/Web/Modules/WebConfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/baculum/protected/Web/Modules/WebConfig.php b/gui/baculum/protected/Web/Modules/WebConfig.php index bdadd86a4..ed9abfbf9 100644 --- a/gui/baculum/protected/Web/Modules/WebConfig.php +++ b/gui/baculum/protected/Web/Modules/WebConfig.php @@ -69,7 +69,7 @@ class WebConfig extends ConfigFileModule { * 0 - keep value in localStorage. Settings are persistent. * int > 0 - keep value in localStorage for specific given time. */ - public const DEF_KEEP_TABLE_SETTINGS = 7200; + const DEF_KEEP_TABLE_SETTINGS = 7200; /** * Default value for showing time in job log. -- 2.47.3