projects
/
tweeper.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
tweeper: make is_cli() stricter
[tweeper.git]
/
tweeper.php
diff --git
a/tweeper.php
b/tweeper.php
index
5e9d242
..
f07382b
100644
(file)
--- a/
tweeper.php
+++ b/
tweeper.php
@@
-285,7
+285,7
@@
class Tweeper {
function is_cli()
{
- return (
substr(php_sapi_name(), 0, 3) == 'cli'
);
+ return (
php_sapi_name() === "cli"
);
}
function usage($argv)