From b22c82a423f8e48116480f8d3f157ce60835fcbe Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Thu, 27 Dec 2018 19:11:08 +0800 Subject: [PATCH] Update index.py --- plugins/php/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/php/index.py b/plugins/php/index.py index b2ace1ca7..197401b06 100755 --- a/plugins/php/index.py +++ b/plugins/php/index.py @@ -92,7 +92,7 @@ def contentReplace(content, version): val = ';user = nobody\n' content = re.sub(rep, val, content) - rep = r'group\s*=\s*(.+)\r?\n' + rep = r'[^\.]group\s*=\s*(.+)\r?\n' val = ';group = nobody\n' content = re.sub(rep, val, content)