merge from 1.4 maint, added check in case the class group name is not available

This commit is contained in:
tworrall 2012-01-11 17:49:40 +00:00
parent 9f0d886d99
commit 0bb104a4b2

View file

@ -24,7 +24,11 @@
<#if classLinks?has_content>
<div class="searchTOC">
<h4>Limit ${classGroupName} to</h4>
<#if classGroupName?has_content>
<h4>Limit ${classGroupName} to</h4>
<#else>
<h4>Limit to</h4>
</#if>
<ul>
<#list classLinks as link>
<li><a href="${link.url}" title="class link">${link.text}</a></li>