missing $ in template

The admin/site.tpl file had a missing $ from a variable name thus Smarty
could not compile the template.
This commit is contained in:
Tobias Diekershoff 2021-09-01 10:54:56 +02:00
parent 6fbdcc3dc6
commit 5fe1ab0758
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@
{{else}}
<div class='field checkbox' id='div_id_{{$diaspora_enabled.0}}'>
<label for='id_{{$diaspora_enabled.0}}'>{{$diaspora_enabled.1}}</label>
<span class="field_help" role="tooltip" id="id_{{diaspora_enabled.0}}">{{$diaspora_not_able}}</span>
<span class="field_help" role="tooltip" id="id_{{$diaspora_enabled.0}}">{{$diaspora_not_able}}</span>
</div>
{{/if}}
{{include file="field_input.tpl" field=$global_directory}}