projects
/
tweeper.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a233a2b
)
Use php_sapi_name() to check for CLI interface
author
Antonio Ospite <ospite@studenti.unina.it>
Sat, 27 Jul 2013 10:43:16 +0000
(12:43 +0200)
committer
Antonio Ospite <ospite@studenti.unina.it>
Sat, 27 Jul 2013 10:43:44 +0000
(12:43 +0200)
tweeper.php
patch
|
blob
|
history
diff --git
a/tweeper.php
b/tweeper.php
index
7fc98cb
..
68b265e
100755
(executable)
--- a/
tweeper.php
+++ b/
tweeper.php
@@
-78,7
+78,7
@@
if (isset($_GET['screen_name'])) {
} else if (isset($argv[1])) {
$screen_name = $argv[1];
} else {
- if (
isset($_SERVER['SCRIPT_NAME'])
)
+ if (
php_sapi_name() != 'cli'
)
$usage = htmlentities("{$_SERVER['SCRIPT_NAME']}?screen_name=<screen_name>");
else
$usage = "{$argv[0]} <screen_name>\n";