From 5af15e40f831565408af1611da837c5b1edd19b3 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Mon, 14 Jul 2025 10:18:08 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20author=20URI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bl-kernel/user.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bl-kernel/user.class.php b/bl-kernel/user.class.php index dd0800fc..f88a46a0 100644 --- a/bl-kernel/user.class.php +++ b/bl-kernel/user.class.php @@ -76,7 +76,8 @@ class User } public function authorUri() { - return DOMAIN_AUTHORS . $this->username(); + global $site; + return $site->uriFilters('author') . $this->username(); } public function displayNameMode()