summaryrefslogtreecommitdiff
path: root/classes/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/config.php')
-rw-r--r--classes/config.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/classes/config.php b/classes/config.php
index a4a42a60a..ab31bc860 100644
--- a/classes/config.php
+++ b/classes/config.php
@@ -448,13 +448,7 @@ class Config {
/** this returns Config::SELF_URL_PATH sans trailing slash */
static function get_self_url() : string {
- $self_url_path = self::get(Config::SELF_URL_PATH);
-
- if (substr($self_url_path, -1) === "/") {
- return substr($self_url_path, 0, -1);
- } else {
- return $self_url_path;
- }
+ return preg_replace("#/*$#", "", self::get(Config::SELF_URL_PATH));
}
static function is_server_https() : bool {