Commit 44476d98 by Paul Klimov

Merge pull request #3479 from lynicidn/patch-4

fix #3478
parents 91cd62be 18d1de61
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment