From a31f005adb9f7650d4f3c1990c55f3034cc98004 Mon Sep 17 00:00:00 2001 From: Netkas Date: Sun, 11 Sep 2022 14:46:18 -0400 Subject: [PATCH] Minor correction --- src/installer/installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer/installer b/src/installer/installer index 9b1e43f..92bf7e2 100644 --- a/src/installer/installer +++ b/src/installer/installer @@ -154,7 +154,7 @@ } // Check if running as root - if(function_exists('posix_getuid') == false) + if(!function_exists('posix_getuid')) { Console::outError('The function posix_getuid() is not available on your system, please make sure the extension `php-common` is installed'); exit(1);