diff options
| author | spiderr <spider@viovio.com> | 2013-04-06 16:19:33 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2013-04-06 16:19:33 -0400 |
| commit | 99b648ce348e5d4897c48723bab834a3af723032 (patch) | |
| tree | 11d6543a8334049bd3026593f0ac6a4b47eacd7f | |
| parent | d5f120e122d66292d988d7ebb59ec9e5c0404b1e (diff) | |
| download | tags-99b648ce348e5d4897c48723bab834a3af723032.tar.gz tags-99b648ce348e5d4897c48723bab834a3af723032.tar.bz2 tags-99b648ce348e5d4897c48723bab834a3af723032.zip | |
major clean up for Smarty 3.0 and another pass at cleaning the top menus
| -rw-r--r-- | templates/admin_tags.tpl | 16 | ||||
| -rw-r--r-- | templates/list_content.tpl | 2 | ||||
| -rw-r--r-- | templates/menu_tags.tpl | 2 | ||||
| -rw-r--r-- | templates/view_tags_mini_inc.tpl | 2 |
4 files changed, 11 insertions, 11 deletions
diff --git a/templates/admin_tags.tpl b/templates/admin_tags.tpl index 88c5aae..a6d62c0 100644 --- a/templates/admin_tags.tpl +++ b/templates/admin_tags.tpl @@ -8,7 +8,7 @@ <input type="hidden" name="page" value="{$page}" /> {foreach from=$formTagsDisplayOptions key=item item=output} <div class="control-group"> - {formlabel label=`$output.label` for=$item} + {formlabel label=$output.label for=$item} {forminput} {if $output.type == 'numeric'} {html_options name="$item" values=$numbers output=$numbers selected=$gBitSystem->getConfig($item) labels=false id=$item} @@ -17,7 +17,7 @@ {else} {html_checkboxes name="$item" values="y" checked=$gBitSystem->getConfig($item) labels=false id=$item} {/if} - {formhelp note=`$output.note` page=`$output.page`} + {formhelp note=$output.note page=$output.page} {/forminput} </div> {/foreach} @@ -39,7 +39,7 @@ <input type="hidden" name="page" value="{$page}" /> {foreach from=$formTagsStripOptions key=item item=output} <div class="control-group"> - {formlabel label=`$output.label` for=$item} + {formlabel label=$output.label for=$item} {forminput} {if $output.type == 'numeric'} {html_options name="$item" values=$numbers output=$numbers selected=$gBitSystem->getConfig($item) labels=false id=$item} @@ -48,7 +48,7 @@ {else} {html_checkboxes name="$item" values="y" checked=$gBitSystem->getConfig($item) labels=false id=$item} {/if} - {formhelp note=`$output.note` page=`$output.page`} + {formhelp note=$output.note page=$output.page} {/forminput} </div> {/foreach} @@ -60,7 +60,7 @@ <input type="hidden" name="page" value="{$page}" /> {foreach from=$formTagsOtherOptions key=item item=output} <div class="control-group"> - {formlabel label=`$output.label` for=$item} + {formlabel label=$output.label for=$item} {forminput} {if $output.type == 'numeric'} {html_options name="$item" values=$numbers output=$numbers selected=$gBitSystem->getConfig($item) labels=false id=$item} @@ -69,7 +69,7 @@ {else} {html_checkboxes name="$item" values="y" checked=$gBitSystem->getConfig($item) labels=false id=$item} {/if} - {formhelp note=`$output.note` page=`$output.page`} + {formhelp note=$output.note page=$output.page} {/forminput} </div> {/foreach} @@ -82,10 +82,10 @@ {foreach from=$formTagLists key=item item=output} <div class="control-group"> - {formlabel label=`$output.label` for=$item} + {formlabel label=$output.label for=$item} {forminput} {html_checkboxes name="$item" values="y" checked=$gBitSystem->getConfig($item) labels=false id=$item} - {formhelp note=`$output.note` page=`$output.page`} + {formhelp note=$output.note page=$output.page} {/forminput} </div> {/foreach} diff --git a/templates/list_content.tpl b/templates/list_content.tpl index b532d99..26c246e 100644 --- a/templates/list_content.tpl +++ b/templates/list_content.tpl @@ -64,7 +64,7 @@ <td>{$item.display_link}</td> {/if} {if $gBitSystem->isFeatureActive( 'tags_list_type' )} - <td>{assign var=content_type_guid value=`$item.content_type_guid`}{$contentTypes.$content_type_guid}</td> + <td>{assign var=content_type_guid value=$item.content_type_guid}{$contentTypes.$content_type_guid}</td> {/if} {if $gBitSystem->isFeatureActive( 'tags_list_author' )} <td>{displayname real_name=$item.creator_real_name user=$item.creator_user}</td> diff --git a/templates/menu_tags.tpl b/templates/menu_tags.tpl index 5417a29..74f2531 100644 --- a/templates/menu_tags.tpl +++ b/templates/menu_tags.tpl @@ -1,5 +1,5 @@ {strip} -<ul> +<ul class="dropdown-menu"> {if $gBitUser->hasPermission('p_tags_view')} <li><a class="item" href="{$smarty.const.TAGS_PKG_URL}index.php">{booticon iname="icon-tags" iexplain="Tag Cloud" ilocation=menu}</a></li> {/if} diff --git a/templates/view_tags_mini_inc.tpl b/templates/view_tags_mini_inc.tpl index 8f4880c..bfc87ed 100644 --- a/templates/view_tags_mini_inc.tpl +++ b/templates/view_tags_mini_inc.tpl @@ -1,7 +1,7 @@ {strip} {if count($tagData) > 0 && $gBitUser->hasPermission('p_tags_view')} <div class="display tags"> - {form ipackage=tags ifile=drop_tags.php} + {form ipackage=tags ifile="drop_tags.php"} <input type="hidden" name="content_id" value="{$gContent->mContentId}" /> <strong>{tr}Tags:{/tr}</strong> |
