From df25056695f0b8dac458f722c4fce6f35bc74620 Mon Sep 17 00:00:00 2001 From: midoks Date: Sun, 19 Jun 2022 14:05:07 +0800 Subject: [PATCH] Update index.py --- plugins/php/index.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/php/index.py b/plugins/php/index.py index b726d625f..d23cfdff6 100755 --- a/plugins/php/index.py +++ b/plugins/php/index.py @@ -200,6 +200,8 @@ def makePhpIni(version): content = mw.readFile(src_ini) if version == '52': content = content + "auto_prepend_file=/www/server/php/app_start.php" + + content = contentReplace(content, version) mw.writeFile(dst_ini, content)