From dfabc9464dc32a13ff99495b3b2bd977df932d9b Mon Sep 17 00:00:00 2001 From: Sarjuuk Date: Fri, 30 Jan 2026 15:39:16 +0100 Subject: [PATCH] Profiler/Fixup * fix tooltips for profiles pending rename --- endpoints/profile/profile_power.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/endpoints/profile/profile_power.php b/endpoints/profile/profile_power.php index 4bb85545..6b8a94ec 100644 --- a/endpoints/profile/profile_power.php +++ b/endpoints/profile/profile_power.php @@ -72,8 +72,11 @@ class ProfilePowerResponse extends TextResponse implements ICache ); } + if ($_ = $profile->getField('renameItr')) + $ri = '-'.$_; + if ($this->subjectName) - $id = implode('.', [$this->region, Profiler::urlize($this->realm, true), urlencode($this->subjectName)]); + $id = implode('.', [$this->region, Profiler::urlize($this->realm, true), urlencode($this->subjectName) . ($ri ?? '')]); else $id = $this->typeId;