Browse Source

Merge pull request #3479 from lynicidn/patch-4

fix #3478
tags/2.0.0-rc
Paul Klimov 10 years ago
parent
commit
44476d985e
  1. 2
      framework/helpers/BaseConsole.php

2
framework/helpers/BaseConsole.php

@ -780,7 +780,7 @@ class BaseConsole
}
static::output(" ? - Show help");
goto top;
} elseif (!in_array($input, array_keys($options))) {
} elseif (!array_key_exists($input, $options)) {
goto top;
}

Loading…
Cancel
Save