From bd0df1caf2ea4c51d301b524430dbe17b5977202 Mon Sep 17 00:00:00 2001 From: "usman@cyberpersons.com" Date: Wed, 17 May 2023 19:22:19 +0500 Subject: [PATCH] bug fix: php manager --- managePHP/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/managePHP/views.py b/managePHP/views.py index 4fb86a3da..1816f029b 100755 --- a/managePHP/views.py +++ b/managePHP/views.py @@ -1314,7 +1314,7 @@ def getExtensionsInformation(request): command = 'yum list installed' resultInstalled = ProcessUtilities.outputExecutioner(command) - command = f'yum list | grep {phpVers} | xargs -n3 | column -t' + command = f'yum list | grep ^{phpVers} | xargs -n3 | column -t' result = ProcessUtilities.outputExecutioner(command).split('\n')