From 00dbde68fbaf7da68ccf191c33f2de88d3603aa8 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Thu, 2 Dec 2021 23:30:13 +0100 Subject: Fix some PHPstan errors (#4019) Fix some wrong variables found by https://github.com/FreshRSS/FreshRSS/issues/4016 --- p/ext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'p') diff --git a/p/ext.php b/p/ext.php index c464f05ab..a19c9e90e 100644 --- a/p/ext.php +++ b/p/ext.php @@ -80,7 +80,7 @@ function is_valid_path_extension($path, $extensionPath, $isStatic = true) { */ function is_valid_path($path) { return is_valid_path_extension($path, CORE_EXTENSIONS_PATH) || is_valid_path_extension($path, THIRDPARTY_EXTENSIONS_PATH) - || is_valid_path_extension($path, USERS_PATH, $false); + || is_valid_path_extension($path, USERS_PATH, false); } function sendBadRequestResponse(string $message = null) { -- cgit v1.2.3