From a4525d31b2536bc8ad9da013f4ed5168fac87d0a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 17 Sep 2020 19:02:27 +0300 Subject: replace FALSE with false so that static analyzer shuts up about it --- include/controls.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/controls.php') diff --git a/include/controls.php b/include/controls.php index dc923e16a..fdcaad287 100755 --- a/include/controls.php +++ b/include/controls.php @@ -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, "?")); } -- cgit v1.2.3-54-g00ecf