Commit 524e552f579ecc3f0cf5e38908cc6419cf5ba48a
1 parent
9d215a99
Merged from STABLE trunk...
KTC-27 "Subscription section in the browse documents area has an extra picture once the menu is expanded. " Fixed. Reviewed By: Kevin git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/branches/3.3.3-Release-Branch@6386 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
10 additions
and
3 deletions
templates/kt3/portlets/actions_portlet.smarty
| 1 | 1 | <ul class="actionlist"> |
| 2 | 2 | {foreach item=action from=$context->actions } |
| 3 | -<li {if $action.active}class="active"{/if}>{if ($action.url)}<a href="{$action.url}" | |
| 4 | -{if $action.description}title="{$action.description}"{/if} | |
| 5 | - >{$action.name}</a>{else}{$action.name}{/if}</li> | |
| 3 | +{if $action != null} | |
| 4 | +<li {if $action.active}class="active"{/if}> | |
| 5 | +{if ($action.url)} | |
| 6 | +<a href="{$action.url}" {if $action.description}title="{$action.description}"{/if}> | |
| 7 | + {$action.name} | |
| 8 | +</a> | |
| 9 | +{else} | |
| 10 | + {$action.name} | |
| 11 | +{/if}</li> | |
| 12 | +{/if} | |
| 6 | 13 | {/foreach} |
| 7 | 14 | </ul> | ... | ... |