replace smarty variable identifier by $

This commit is contained in:
Manuel Raynaud
2013-09-10 16:54:13 +02:00
parent 0f46e9d23a
commit 5ab3d4fb88
19 changed files with 185 additions and 185 deletions

View File

@@ -3,7 +3,7 @@
<h1>{intl l='cart'}</h1>
<ul>
{loop name="cart" type="cart"}
<li>Item {$LOOP_COUNT}/{$LOOP_TOTAL} : #ITEM_ID #TITLE - quantity : #QUANTITY</li>
<li>Item {$LOOP_COUNT}/{$LOOP_TOTAL} : {$ITEM_ID} {$TITLE} - quantity : {$QUANTITY}</li>
{/loop}
</ul>
@@ -16,7 +16,7 @@
and passed back to the form plugin through the ParserContext.
*}
{if #form_error}<div class="alert alert-error">#form_error_message</div>{/if}
{if $form_error}<div class="alert alert-error">{$form_error_message}</div>{/if}
{form_hidden_fields form=$form}