1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-19 20:11:29 +00:00

add cosmetic workaround for get_self_url_prefix() to stop the unwashed whining about double slashes in URLs

This commit is contained in:
Andrew Dolgov
2012-12-07 09:47:46 +04:00
parent 61a748f87f
commit be1af6703f

View File

@@ -3405,8 +3405,9 @@
return $tag; return $tag;
} }
// we need to placate idiots who don't know any better
function get_self_url_prefix() { function get_self_url_prefix() {
return SELF_URL_PATH; return preg_replace("/\/$/", "", SELF_URL_PATH);
} }
function opml_publish_url($link){ function opml_publish_url($link){