change how to use smarty variables
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="{url path='/admin/home'}">{intl l="Home"}</a></li>
|
||||
<li><a href="{url path="{$redirectUrl}"}">{intl l="Image"}</a></li>
|
||||
<li>{intl l='Editing image "%name"' name=$TITLE}</li>
|
||||
<li>{intl l='Editing image "%name"' name={$TITLE}}</li>
|
||||
</ul>
|
||||
|
||||
<div class="row">
|
||||
@@ -22,7 +22,7 @@
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-12 title title-without-tabs">
|
||||
{intl l='Edit image "%name"' name=$TITLE}
|
||||
{intl l='Edit image "%name"' name={$TITLE}}
|
||||
</div>
|
||||
|
||||
<div class="form-container">
|
||||
@@ -137,7 +137,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="alert alert-error">
|
||||
{intl l="Sorry, image ID=%id was not found." id=$imageId}
|
||||
{intl l="Sorry, image ID=%id was not found." id={$imageId}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user