1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 01:25:56 +00:00

UrlHelper::rewrite_relative: don't try to feed NULL to with_trailing_slash()

This commit is contained in:
Andrew Dolgov
2021-05-21 17:10:32 +03:00
parent dff479af64
commit 326850845d

View File

@@ -51,7 +51,7 @@ class UrlHelper {
// (i'm not sure if it's a good idea)
if (strpos($rel_parts['path'], '/') !== 0) {
$rel_parts['path'] = with_trailing_slash($base_parts['path']) . $rel_parts['path'];
$rel_parts['path'] = with_trailing_slash($base_parts['path'] ?? "") . $rel_parts['path'];
}
$rel_parts['path'] = str_replace("/./", "/", $rel_parts['path']);