From 0151dfcdcce47871e863acc9df83ab1b7b355d8b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Fri, 19 May 2023 16:42:00 +0200 Subject: [PATCH] Replace use of `|array_pop` by `|end` in cacheList.tpl `|end` is more commonly used, making it easier to scan for used template modifiers. --- wcfsetup/install/files/acp/templates/cacheList.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/acp/templates/cacheList.tpl b/wcfsetup/install/files/acp/templates/cacheList.tpl index 8765e2e330..c39efc770b 100644 --- a/wcfsetup/install/files/acp/templates/cacheList.tpl +++ b/wcfsetup/install/files/acp/templates/cacheList.tpl @@ -37,7 +37,7 @@
{lang}wcf.acp.cache.data.source{/lang}
{assign var='__source' value="\\"|explode:$cacheData.source} - {lang}wcf.acp.cache.source.type.{$__source|array_pop}{/lang} + {lang}wcf.acp.cache.source.type.{$__source|end}{/lang} {$cacheData.source}
-- 2.20.1