diff options
| author | Lester Caine <lester@lsces.co.uk> | 2026-05-30 17:49:03 +0100 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2026-05-30 17:49:03 +0100 |
| commit | 496544409f5885149d5e539ef36f0634ba8f19dc (patch) | |
| tree | 0fc1b60b35ff681617c03f2ba747bd6aeb785901 | |
| parent | bbefdbb2955d3b914df6e056fed0b78d8cbbe0ac (diff) | |
| download | themes-496544409f5885149d5e539ef36f0634ba8f19dc.tar.gz themes-496544409f5885149d5e539ef36f0634ba8f19dc.tar.bz2 themes-496544409f5885149d5e539ef36f0634ba8f19dc.zip | |
Fix invalid use of 'tra' as Smarty modifier in admin_layout_overview.tpl
'tra' is a block function, not a modifier; remove it and use the literal
string since 'Default' needs no translation in this context.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
| -rwxr-xr-x | templates/admin_layout_overview.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/admin_layout_overview.tpl b/templates/admin_layout_overview.tpl index 88bc03b..1b9998a 100755 --- a/templates/admin_layout_overview.tpl +++ b/templates/admin_layout_overview.tpl @@ -11,7 +11,7 @@ {foreach name=PkgLayouts from=$layouts item=layout key=module_package} {if !$module_package || $module_package == 'kernel'} - {assign var=tabTitle value="Default"|tra} + {assign var=tabTitle value="Default"} {else} {assign var=tabTitle value=$module_package|capitalize} {/if} |
