openrat-cms

OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs | README

commit 1e419a055b010d94e4b9c4866c2806f7ba723087
parent 9aabd8bd77252a8e2a6e741908621acee15254ae
Author: Jan Dankert <develop@jandankert.de>
Date:   Wed, 21 Apr 2021 21:19:10 +0200

Fix: PHP 5.4 compatibility.

Diffstat:
Mmodules/configuration/Config.class.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/configuration/Config.class.php b/modules/configuration/Config.class.php @@ -184,7 +184,7 @@ class Config return !$this->isEmpty(); } - private function parseSuffix( $value, array $map) + private function parseSuffix( $value, $map) { $suffix = substr($value,-1,1); $value = substr($value,1);