From eccd5a98c22cc2afd6712828b2cd6430b20a6b59 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Mon, 29 Sep 2025 12:30:59 -0300 Subject: [PATCH] Remove deprecated backtick operator from test --- tests/connection.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/connection.inc b/tests/connection.inc index d043a61..b8886ff 100644 --- a/tests/connection.inc +++ b/tests/connection.inc @@ -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) {