mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 01:36:30 +00:00
replace FALSE with false so that static analyzer shuts up about it
This commit is contained in:
@@ -244,7 +244,7 @@ function stylesheet_tag($filename, $id = false) {
|
||||
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, "?"));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user