$argv is not defined in non-cli mode, so protect its usage behind an
is_cli() check.
For instance, this avoids a message in the PHP built-in web server, when
usage() gets called:
PHP Notice: Undefined variable: argv in .../tweeper.php on line 357
}
if (!isset($options['src_url'])) {
}
if (!isset($options['src_url'])) {
- fwrite($ERROR_STREAM, usage($argv));
+ fwrite($ERROR_STREAM, usage(is_cli() ? $argv : NULL));