projects
/
tweeper.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
README: fix license so that 'licensecheck' determines the right one
[tweeper.git]
/
tweeper.php
diff --git
a/tweeper.php
b/tweeper.php
index
e8f6b87
..
bcc85fe
100644
(file)
--- a/
tweeper.php
+++ b/
tweeper.php
@@
-51,18
+51,18
@@
function usage($argv) {
* Parse command line options.
*/
function parse_options_cli($argv, $argc) {
* Parse command line options.
*/
function parse_options_cli($argv, $argc) {
- $options =
array(
+ $options =
[
'generate_enclosure' => FALSE,
'show_usernames' => TRUE,
'show_multimedia' => TRUE,
'verbose_output' => TRUE,
'generate_enclosure' => FALSE,
'show_usernames' => TRUE,
'show_multimedia' => TRUE,
'verbose_output' => TRUE,
-
)
;
+
]
;
if ($argc < 2) {
return $options;
}
if ($argc < 2) {
return $options;
}
- $cli_options = getopt("em:u:v:h",
array("help")
);
+ $cli_options = getopt("em:u:v:h",
["help"]
);
foreach ($cli_options as $opt => $val) {
switch ($opt) {
case 'e':
foreach ($cli_options as $opt => $val) {
switch ($opt) {
case 'e':
@@
-121,12
+121,12
@@
function parse_options_cli($argv, $argc) {
* Parse options passed from a query string.
*/
function parse_options_query_string() {
* Parse options passed from a query string.
*/
function parse_options_query_string() {
- $options =
array(
+ $options =
[
'generate_enclosure' => FALSE,
'show_usernames' => TRUE,
'show_multimedia' => TRUE,
'verbose_output' => TRUE,
'generate_enclosure' => FALSE,
'show_usernames' => TRUE,
'show_multimedia' => TRUE,
'verbose_output' => TRUE,
-
)
;
+
]
;
if (isset($_GET['src_url'])) {
$options['src_url'] = $_GET['src_url'];
if (isset($_GET['src_url'])) {
$options['src_url'] = $_GET['src_url'];