summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pear/Console/Getopt.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/Console/Getopt.php b/pear/Console/Getopt.php
index 14931dec16..41ea43d27f 100644
--- a/pear/Console/Getopt.php
+++ b/pear/Console/Getopt.php
@@ -147,7 +147,7 @@ class Console_Getopt {
*/
function _parseLongOption($arg, $long_options, &$opts, &$args)
{
- list($opt, $opt_arg) = explode('=', $arg);
+ @list($opt, $opt_arg) = explode('=', $arg);
$opt_len = strlen($opt);
for ($i = 0; $i < count($long_options); $i++) {