diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-11-24 14:06:57 +0000 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-11-24 14:06:57 +0000 |
| commit | 103bafd90a33abc1478e7c4ec6b732ebd04a4995 (patch) | |
| tree | f28c7ece3584a7852b6562020246b1de6167774e /classes/Config.php | |
| parent | 53fee911e6a39a5c8504d03d1f114a131d00784c (diff) | |
| parent | 667528d5b927f0f284a067b0e24c9ca7f26c28a4 (diff) | |
Merge branch 'feature/php8-str-funcs' into 'master'
Use PHP 8 'str_' functions.
See merge request tt-rss/tt-rss!81
Diffstat (limited to 'classes/Config.php')
| -rw-r--r-- | classes/Config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Config.php b/classes/Config.php index 4775faf71..e22808faa 100644 --- a/classes/Config.php +++ b/classes/Config.php @@ -510,7 +510,7 @@ class Config { $errors = []; - if (strpos(self::get(Config::PLUGINS), "auth_") === false) { + if (!str_contains(self::get(Config::PLUGINS), "auth_")) { array_push($errors, "Please enable at least one authentication module via PLUGINS"); } |