Skip to content

Commit eccd5a9

Browse files
committed
Remove deprecated backtick operator from test
1 parent 1f7119b commit eccd5a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/connection.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ $username = $user;
1515
// IBM i (PASE)
1616
$myos = PHP_OS;
1717
if (strpos('x'.$myos,'AIX') > 0) {
18-
$myos = `uname`;
18+
$myos = shell_exec("uname");
1919
}
2020
if (strpos($myos,'400') > 0) {
2121
if (strpos($_SERVER["PHP_SELF"],"V6") === false) {

0 commit comments

Comments
 (0)