Remove deprecated backtick operator from test

This commit is contained in:
Calvin Buckley
2025-09-29 12:30:59 -03:00
parent 1f7119bb49
commit eccd5a98c2

View File

@@ -15,7 +15,7 @@ $username = $user;
// IBM i (PASE)
$myos = PHP_OS;
if (strpos('x'.$myos,'AIX') > 0) {
$myos = `uname`;
$myos = shell_exec("uname");
}
if (strpos($myos,'400') > 0) {
if (strpos($_SERVER["PHP_SELF"],"V6") === false) {