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:
parent
6fbdcc3dc6
commit
5fe1ab0758
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@
|
||||||
{{else}}
|
{{else}}
|
||||||
<div class='field checkbox' id='div_id_{{$diaspora_enabled.0}}'>
|
<div class='field checkbox' id='div_id_{{$diaspora_enabled.0}}'>
|
||||||
<label for='id_{{$diaspora_enabled.0}}'>{{$diaspora_enabled.1}}</label>
|
<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>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{include file="field_input.tpl" field=$global_directory}}
|
{{include file="field_input.tpl" field=$global_directory}}
|
||||||
|
|
Loading…
Reference in a new issue