tweeper.php: rename the ERROR_STREAM variable to error_stream
authorAntonio Ospite <ao2@ao2.it>
Tue, 17 May 2016 21:37:35 +0000 (23:37 +0200)
committerAntonio Ospite <ao2@ao2.it>
Fri, 20 May 2016 09:03:52 +0000 (11:03 +0200)
Variables should be in lower case.

tweeper.php

index 3e250b7..f1a4ba9 100644 (file)
@@ -413,15 +413,15 @@ function parse_options_query_string() {
 
 if (is_cli()) {
   $options = parse_options_cli($argv, $argc);
-  $ERROR_STREAM = fopen('php://stderr', 'w');
+  $error_stream = fopen('php://stderr', 'w');
 }
 else {
   $options = parse_options_query_string();
-  $ERROR_STREAM = fopen('php://output', 'w');
+  $error_stream = fopen('php://output', 'w');
 }
 
 if (!isset($options['src_url'])) {
-  fwrite($ERROR_STREAM, usage(is_cli() ? $argv : NULL));
+  fwrite($error_stream, usage(is_cli() ? $argv : NULL));
   exit(1);
 }