From 51cc387347668e98b1b8e6c6053581a2affc5fa6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 9 Dec 2012 13:32:09 +0400 Subject: do not use regexps in get_self_url_prefix() --- include/functions.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/functions.php b/include/functions.php index 95881dd9e..53aaa92b3 100644 --- a/include/functions.php +++ b/include/functions.php @@ -3405,9 +3405,12 @@ return $tag; } - // we need to placate idiots who don't know any better function get_self_url_prefix() { - return preg_replace("/\/$/", "", SELF_URL_PATH); + if (strrpos(SELF_URL_PATH, "/") === strlen(SELF_URL_PATH)-1) { + return substr(SELF_URL_PATH, 0, strlen(SELF_URL_PATH)-1); + } else { + return SELF_URL_PATH; + } } function opml_publish_url($link){ -- cgit v1.2.3