openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 378c796f5d54cb24163126eab648f23e3f3569d9
parent 292ddecaf62277a63d1082363d2e9e57867be86b
Author: Jan Dankert <devnull@localhost>
Date:   Wed, 29 Aug 2018 22:54:34 +0200

Fix für PHP 7.2: Der Pfad zum Apache-Modul ist natürlich ein anderer und irgendwie ist das trotzdem doof, diese Lösung.

Diffstat:
dev-helper/create-output-files.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-helper/create-output-files.sh b/dev-helper/create-output-files.sh @@ -71,7 +71,7 @@ function createfile fi - if [ -e /etc/apache2/mods-enabled/php7.0.load ] && [ `stat -c %a $file` -ne "666" ]; then + if [ -e /etc/apache2/mods-enabled/php7.2.load ] && [ `stat -c %a $file` -ne "666" ]; then chmod 666 -v $file fi }