diff options
author | patdenice <patdenice@piwigo.org> | 2008-10-04 15:36:45 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2008-10-04 15:36:45 +0000 |
commit | a97451563437b12de9050e7f37c021b9eaa62d6d (patch) | |
tree | 5923f305c8cbd14fbd22c82177d531720dcda8e3 /template/yoga/menubar_categories.tpl | |
parent | 094ed0f17ac87505ee7e85a2dffa976871977283 (diff) |
- don't display empty <ul> if no plugins to display in specials admin menu.
- correction in plugins_list.tpl if plugins missing.
- filter icon is displayed inside <dt> tags.
git-svn-id: http://piwigo.org/svn/trunk@2656 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/menubar_categories.tpl')
-rw-r--r-- | template/yoga/menubar_categories.tpl | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/template/yoga/menubar_categories.tpl b/template/yoga/menubar_categories.tpl index eb09ec914..9986f7dd5 100644 --- a/template/yoga/menubar_categories.tpl +++ b/template/yoga/menubar_categories.tpl @@ -1,11 +1,10 @@ -{if isset($U_START_FILTER)} -<a href="{$U_START_FILTER}" title="{'start_filter_hint'|@translate}" rel="nofollow"><img src="{$ROOT_URL}{$themeconf.icon_dir}/start_filter.png" class="button" alt="start filter"></a> -{/if} -{if isset($U_STOP_FILTER)} -<a href="{$U_STOP_FILTER}" title="{'stop_filter_hint'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/stop_filter.png" class="button" alt="stop filter"></a> -{/if} - <dt> + {if isset($U_START_FILTER)} + <a href="{$U_START_FILTER}" title="{'start_filter_hint'|@translate}" rel="nofollow"><img src="{$ROOT_URL}{$themeconf.icon_dir}/start_filter.png" class="button" alt="start filter"></a> + {/if} + {if isset($U_STOP_FILTER)} + <a href="{$U_STOP_FILTER}" title="{'stop_filter_hint'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/stop_filter.png" class="button" alt="stop filter"></a> + {/if} <a href="{$block->data.U_CATEGORIES}">{'Categories'|@translate}</a> </dt> <dd> |