Format
Si è verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing:
==> httpUtil.getParameter  [in template "51632#51678#52200" at line 19, column 38]

----
Tip: It's the step after the last dot that caused this error, not those before it.
----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign debug = validator.isNotNull(h...  [in template "51632#51678#52200" at line 19, column 1]
----
1<#--Inclusione delle MACRO  --> 
2<#include "${templatesPath}/SELLA-MACRO" /> 
3<#assign haslink=false />  
4 
5<#assign pTitle = "portletSetupTitle_" + locale /> 
6<#assign chackPortletTitle = portletPreferences[pTitle]??/> 
7<#assign useCustomTitle = "portletSetupUseCustomTitle"/> 
8 
9<#if portletPreferences[useCustomTitle]??> 
10    <#assign useCustomTitleValue = portletPreferences[useCustomTitle][0] == "true"/> 
11<#else> 
12    <#assign useCustomTitleValue = false/> 
13</#if> 
14 
15<#assign portlet_display = portletDisplay /> 
16<#assign portlet_display_name = htmlUtil.escape(portlet_display.getTitle()) /> 
17 
18<#-- ##################################### DEBUG ################################### -->             
19<#assign debug = validator.isNotNull(httpUtil.getParameter(current_url,"sellaDebug",false)) /> 
20<#if debug > 
21    <div class="debug-content right"> 
22        TPL: NEWS BOARD 
23    </div> 
24</#if> 
25 
26<#assign colClass = "col-sm-6"/> 
27<#assign module = 2/> 
28<#assign maxHeightClass = "max-maximum-height" /> 
29<#assign maxItems = 2 /> 
30<#assign displayBigTopic = true /> 
31 
32<#--Include master news topic template  --> 
33<#include "${templatesPath}/NEWS-COLUMN-TOPIC-MASTER" />