Author: rwesten
Date: Wed Oct  5 17:14:50 2011
New Revision: 1179327

URL: http://svn.apache.org/viewvc?rev=1179327&view=rev
Log:
corrected a bug that caused checking for "!= null" instead of "?size != 0"

Modified:
    
incubator/stanbol/trunk/enhancer/jersey/src/main/resources/org/apache/stanbol/enhancer/jersey/templates/imports/contentitem.ftl

Modified: 
incubator/stanbol/trunk/enhancer/jersey/src/main/resources/org/apache/stanbol/enhancer/jersey/templates/imports/contentitem.ftl
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/enhancer/jersey/src/main/resources/org/apache/stanbol/enhancer/jersey/templates/imports/contentitem.ftl?rev=1179327&r1=1179326&r2=1179327&view=diff
==============================================================================
--- 
incubator/stanbol/trunk/enhancer/jersey/src/main/resources/org/apache/stanbol/enhancer/jersey/templates/imports/contentitem.ftl
 (original)
+++ 
incubator/stanbol/trunk/enhancer/jersey/src/main/resources/org/apache/stanbol/enhancer/jersey/templates/imports/contentitem.ftl
 Wed Oct  5 17:14:50 2011
@@ -18,7 +18,7 @@
 <#macro view>
 
 <div class="entitylistings">
-<#if it.personOccurrences?size != 0 || it.organizationOccurrences?size != 0 || 
 it.placeOccurrences?size != 0 || it.conceptOccurrences != null || 
it.otherOccurrences != null>
+<#if it.personOccurrences?size != 0 || it.organizationOccurrences?size != 0 || 
 it.placeOccurrences?size != 0 || it.conceptOccurrences?size != 0 || 
it.otherOccurrences?size != 0>
 <h3>Extracted entities</h3>
 </#if>
 


Reply via email to