diff options
| -rw-r--r-- | templates/admin_rss.tpl | 10 | ||||
| -rw-r--r-- | templates/menu_rss.tpl | 3 |
2 files changed, 7 insertions, 6 deletions
diff --git a/templates/admin_rss.tpl b/templates/admin_rss.tpl index 9505219..29bd228 100644 --- a/templates/admin_rss.tpl +++ b/templates/admin_rss.tpl @@ -13,7 +13,7 @@ {assign var="rss_max" value="`$pkg_rss`_max_records"} {assign var="rss_title" value="`$pkg_rss`_title"} {assign var="rss_description" value="`$pkg_rss`_description"} - {formhelp note=`$output.note`} + {formhelp note=$output.note} {/forminput} </div> @@ -70,20 +70,20 @@ {foreach from=$formRSSSettings key=setting item=output} <div class="control-group"> - {formlabel label=`$output.label` for=$setting} + {formlabel label=$output.label for=$setting} {forminput} <input type="text" name="{$setting}" id="{$setting}" size="50" value="{$gBitSystem->getConfig($setting)}" /> - {formhelp note=`$output.note`} + {formhelp note=$output.note} {/forminput} </div> {/foreach} {foreach from=$formRSSOptions 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/menu_rss.tpl b/templates/menu_rss.tpl index 96df77c..d62e236 100644 --- a/templates/menu_rss.tpl +++ b/templates/menu_rss.tpl @@ -1,5 +1,6 @@ {strip} -<ul> +<a class="dropdown-toggle" data-toggle="dropdown" href="#"> {tr}{$packageMenuTitle}{/tr} <b class="caret"></b></a> +<ul class="{$packageMenuClass}"> <li><a class="item" href="{$smarty.const.RSS_PKG_URL}index.php" title="{tr}Syndication{/tr}" >{booticon iname="icon-rss" iexplain="Syndication" ilocation=menu}</a></li> </ul> {/strip} |
