1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 12:25:56 +00:00

replace FALSE with false so that static analyzer shuts up about it

This commit is contained in:
Andrew Dolgov
2020-09-17 19:02:27 +03:00
parent 57fac84516
commit a4525d31b2
29 changed files with 63 additions and 63 deletions

View File

@@ -10,7 +10,7 @@
function javascript_tag($filename) {
$query = "";
if (!(strpos($filename, "?") === FALSE)) {
if (!(strpos($filename, "?") === false)) {
$query = substr($filename, strpos($filename, "?")+1);
$filename = substr($filename, 0, strpos($filename, "?"));
}