[PHP-FPM] Patch legacy template lib of NC if exists
This commit is contained in:
parent
a1baf2112b
commit
61cd2c0353
@ -1,5 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
|
||||||
|
|
||||||
function array_by_comma { local IFS=","; echo "$*"; }
|
function array_by_comma { local IFS=","; echo "$*"; }
|
||||||
|
|
||||||
@ -92,4 +91,9 @@ EOF
|
|||||||
fi
|
fi
|
||||||
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 "$@"
|
exec "$@"
|
||||||
|
Loading…
Reference in New Issue
Block a user