aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/lib
diff options
context:
space:
mode:
authorAlexandre Alapetite <alexandre@alapetite.fr>2024-01-30 12:57:14 +0100
committerGitHub <noreply@github.com>2024-01-30 12:57:14 +0100
commit06570b30f0af1b4e4b4f1723bbb2ad0a4b83db6c (patch)
tree4dab12abe182e4a6dd76c1a62b2a30b32841e811 /lib
parent4d95ef71642b4f5b17e4a56fdaf1561439f0dadf (diff)
downloadfreshrss-06570b30f0af1b4e4b4f1723bbb2ad0a4b83db6c.tar.gz
freshrss-06570b30f0af1b4e4b4f1723bbb2ad0a4b83db6c.zip
composer update (#6075)
Update PHPStan, fixing some bugs needed for https://github.com/FreshRSS/FreshRSS/pull/6052 (One syntax fix caught by new version) Update also PHPUnit
Diffstat (limited to 'lib')
-rw-r--r--lib/lib_rss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php
index 62fe87375..9dfb26405 100644
--- a/lib/lib_rss.php
+++ b/lib/lib_rss.php
@@ -842,7 +842,7 @@ function getNonStandardShortcuts(array $shortcuts): array {
$nonStandard = array_filter($shortcuts, static function (string $shortcut) use ($standard) {
$shortcut = trim($shortcut);
- return $shortcut !== '' & stripos($standard, $shortcut) === false;
+ return $shortcut !== '' && stripos($standard, $shortcut) === false;
});
return $nonStandard;