From: Greg Beaver Date: Sat, 6 Dec 2003 22:08:58 +0000 (+0000) Subject: MFH X-Git-Tag: php-4.3.5RC1~102 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2361a14e0f8e13a3f8d352ab68b16a1ee2c50fff;p=php MFH --- diff --git a/pear/System.php b/pear/System.php index 28b66b1cd5..66f48fe49f 100644 --- a/pear/System.php +++ b/pear/System.php @@ -66,7 +66,7 @@ class System function _parseArgs($argv, $short_options, $long_options = null) { if (!is_array($argv) && $argv !== null) { - $argv = preg_split('/\s+/', ': '.$argv); + $argv = preg_split('/\s+/', $argv); } return Console_Getopt::getopt($argv, $short_options); }