From 8fd033a31c19d1a110636067d45956502d42c84b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Dufraisse?= Date: Thu, 30 Nov 2023 17:23:00 +0100 Subject: [PATCH] fix(SetWikiDefaultThemeAction): use wiki->tag --- tools/templates/actions/SetWikiDefaultThemeAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/templates/actions/SetWikiDefaultThemeAction.php b/tools/templates/actions/SetWikiDefaultThemeAction.php index 0c0b327b1..7d744ef1d 100644 --- a/tools/templates/actions/SetWikiDefaultThemeAction.php +++ b/tools/templates/actions/SetWikiDefaultThemeAction.php @@ -55,7 +55,7 @@ public function run() $config->hide_action_template = '1'; } $config->write(); - $this->wiki->Redirect($this->wiki->href("", $this->tag)); + $this->wiki->Redirect($this->wiki->href("", $this->wiki->tag)); } }