diff options
| author | lsces <lester@lsces.co.uk> | 2026-03-27 16:10:13 +0000 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2026-03-27 16:10:13 +0000 |
| commit | 4e45633db67de8570243e44de0531bf2102b9da9 (patch) | |
| tree | 5f8596da9e130ea414964c04548ff6a2811ded23 /templates/footer_inc.tpl | |
| parent | 3ecf21bb66221dd9211558fe3e5b887011d6dd29 (diff) | |
| download | languages-4e45633db67de8570243e44de0531bf2102b9da9.tar.gz languages-4e45633db67de8570243e44de0531bf2102b9da9.tar.bz2 languages-4e45633db67de8570243e44de0531bf2102b9da9.zip | |
Figured what has been causing a problem with using && and || in smarty templates and related to mistake in processing {2} elements that should use curly brackets and not revert to square ones.
Diffstat (limited to 'templates/footer_inc.tpl')
| -rw-r--r-- | templates/footer_inc.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/footer_inc.tpl b/templates/footer_inc.tpl index 6ecf3f2..691f906 100644 --- a/templates/footer_inc.tpl +++ b/templates/footer_inc.tpl @@ -1,4 +1,4 @@ -{if $gBitSystem->isFeatureActive( 'i18n_interactive_translation' ) and $gBitUser->hasPermission( 'p_languages_edit' )} +{if $gBitSystem->isFeatureActive( 'i18n_interactive_translation' ) && $gBitUser->hasPermission( 'p_languages_edit' )} <div class="translation box"> <h3>{tr}Translation Links{/tr}</h3> {foreach from=$gBitTranslationHash item=hash key=key} |
