From: Remi Collet Date: Thu, 6 Jun 2019 12:23:38 +0000 (+0200) Subject: Fix #88 bad variable name X-Git-Tag: RELEASE_3_2_1~5 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=48c767150926050965623bff37c57e60acddc53c Fix #88 bad variable name --- diff --git a/tests/helper/server.inc b/tests/helper/server.inc index ea83f70..9ca96cd 100644 --- a/tests/helper/server.inc +++ b/tests/helper/server.inc @@ -124,7 +124,7 @@ function server($handler, $cb) { continue; } if ($argList[$i] === '-d') { - $args[] = '-d' . $args[++$i]; + $args[] = '-d' . $argList[++$i]; continue; } if (substr($argList[$i], 0, 2) === '-d') {