diff options
| author | Andrew Dolgov <noreply@fakecake.org> | 2020-09-17 19:02:27 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@fakecake.org> | 2020-09-17 19:02:27 +0300 |
| commit | a4525d31b2536bc8ad9da013f4ed5168fac87d0a (patch) | |
| tree | 9ae00d19d362a74693800b45efbbf6ffaddcdbb9 /include/login_form.php | |
| parent | 57fac845166a2efa7244c61cce31442fc5600232 (diff) | |
replace FALSE with false so that static analyzer shuts up about it
Diffstat (limited to 'include/login_form.php')
| -rwxr-xr-x | include/login_form.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/login_form.php b/include/login_form.php index 74f85f314..29fbe3aba 100755 --- a/include/login_form.php +++ b/include/login_form.php @@ -120,7 +120,7 @@ onblur="UtilityApp.fetchProfiles()" value="<?php echo $_SESSION["fake_password"] ?>"/> </fieldset> - <?php if (strpos(PLUGINS, "auth_internal") !== FALSE) { ?> + <?php if (strpos(PLUGINS, "auth_internal") !== false) { ?> <fieldset class="align-right"> <a href="public.php?op=forgotpass"><?php echo __("I forgot my password") ?></a> </fieldset> |