소스 검색

[PHP-FPM] Patch legacy template lib of NC if exists

andryyy 6 년 전
부모
커밋
61cd2c0353
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      data/Dockerfiles/phpfpm/docker-entrypoint.sh

+ 5 - 1
data/Dockerfiles/phpfpm/docker-entrypoint.sh

@@ -1,5 +1,4 @@
 #!/bin/bash
-set -e
 
 function array_by_comma { local IFS=","; echo "$*"; }
 
@@ -92,4 +91,9 @@ EOF
   fi
 fi
 
+# Patching NC files, if any (fixes PHP 7.2.14 + NC 15.0.2)
+find /web/ -ipath '*lib/private/legacy/template.php' | while read -r template; do
+  sed -i "s/\$app \!== ''/\$app \!== '' \&\& \$app \!== 'core'/g" "${template}"
+done
+
 exec "$@"