1
1
Fork 0

fixes and tweaks to Smarty processing

This commit is contained in:
Zach Prezkuta 2013-01-12 05:58:54 -07:00
commit 609c45e791
29 changed files with 64 additions and 66 deletions

View file

@ -19,8 +19,8 @@
{{$tabs}}
{{foreach $contacts as $c}}
{{include file="contact_template.tpl" contact=$c}}
{{foreach $contacts as $contact}}
{{include file="contact_template.tpl"}}
{{/foreach}}
<div id="contact-edit-end"></div>

View file

@ -20,9 +20,9 @@
</div>
{{if $groupedit_info}}
{{if $groupeditor}}
<div id="group-update-wrapper">
{{include file="groupeditor.tpl" groupeditor=$groupedit_info}}
{{include file="groupeditor.tpl"}}
</div>
{{/if}}
{{if $desc}}<div id="group-edit-desc">{{$desc}}</div>{{/if}}

View file

@ -4,8 +4,8 @@
*
*}}
{{foreach $mails as $mail_item}}
{{include file="mail_conv.tpl" mail=$mail_item}}
{{foreach $mails as $mail}}
{{include file="mail_conv.tpl"}}
{{/foreach}}
{{if $canreply}}

View file

@ -5,8 +5,8 @@
*}}
<h1>{{$header}}</h1>
{{foreach $contacts as $c}}
{{include file="contact_template.tpl" contact=$c}}
{{foreach $contacts as $contact}}
{{include file="contact_template.tpl"}}
{{/foreach}}
<div id="contact-edit-end"></div>

View file

@ -9,8 +9,8 @@
{{/if}}
<div class="photos">
{{foreach $photos as $ph}}
{{include file="photo_top.tpl" photo=$ph}}
{{foreach $photos as $photo}}
{{include file="photo_top.tpl"}}
{{/foreach}}
</div>
<div class="photos-end"></div>

View file

@ -14,8 +14,8 @@
{{if $response.totalResults}}
{{foreach $response.entry as $ent}}
{{include file="poco_entry_xml.tpl" entry=$ent}}
{{foreach $response.entry as $entry}}
{{include file="poco_entry_xml.tpl"}}
{{/foreach}}
{{else}}
<entry></entry>

View file

@ -5,8 +5,8 @@
*}}
<h3>{{$title}}</h3>
{{foreach $contacts as $c}}
{{include file="contact_template.tpl" contact=$c}}
{{foreach $contacts as $contact}}
{{include file="contact_template.tpl"}}
{{/foreach}}
<div id="view-contact-end"></div>