Commit c20dbcf54f385631860da514d356a4265eb68bf5
1 parent
fb0ecab3
Merged in...
KTS-3779 "When saved searches has long names it causes the 'Browse documents' page to have large white spaces and the search name also overlaps the margins." Fixed. Removed the <nobr> that was breaking all porlets and UI elements below. Committed by: Megan Watson Reviewed by: Conrad Vermeulen git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/branches/3.5.4-Release-Branch@9573 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
templates/ktcore/search2/search_portlet.smarty
| ... | ... | @@ -5,7 +5,7 @@ |
| 5 | 5 | <li><a href="{$rootUrl}/search2.php?action=guiBuilder">{i18n}Advanced Search{/i18n}</a></li> |
| 6 | 6 | <li><a href="{$rootUrl}/search2.php?action=queryBuilder">{i18n}Search Criteria Editor{/i18n}</a></li> |
| 7 | 7 | {if !$search2_anonymous} |
| 8 | -<li><a href="{$rootUrl}/search2.php?action=manage"><nobr>{i18n}Manage Saved Search{/i18n}</a></li> | |
| 8 | +<li><a href="{$rootUrl}/search2.php?action=manage">{i18n}Manage Saved Search{/i18n}</a></li> | |
| 9 | 9 | {/if} |
| 10 | 10 | </ul> |
| 11 | 11 | |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <hr /> |
| 14 | 14 | <ul class="actionlist" style="top: -30px"> |
| 15 | 15 | {foreach item=searchitem from=$savedSearches} |
| 16 | - <li><a href="{$rootUrl}/search2.php?action=processSaved&fSavedSearchId={$searchitem.id}"> {$searchitem.name|sanitize}</a> | |
| 16 | + <li><a href="{$rootUrl}/search2.php?action=processSaved&fSavedSearchId={$searchitem.id}"> {$searchitem.name|sanitize}</a></li> | |
| 17 | 17 | {/foreach} |
| 18 | 18 | </ul> |
| 19 | 19 | {/if} | ... | ... |