- Issue created by @rgpublic
Currently if I run some cronjob with options without value from the command-line I get a notice, e.g.:
drush cron-run example_job quick
I get:
Undefined array key 1 UltimateCronCommands.php:263
This is inside the "run" method on this line:
list($key, $value) = explode('=', $pair);
The problem is the missing "=". I would need to write:
drush cron-run example_job quick=true
It'd be nice if Ultimate Cron were less strict on this and just assume "true".
Active
2.0
Code