Especials temàtics

S'ha produït un error mentre es processava la plantilla.
The following has evaluated to null or missing:
==> imgSrc  [in template "10901#10934#PRESTATGE_MES_INFO_ENLLAÇ" at line 40, column 19]

----
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: #if (imgSrc != "")  [in template "10901#10934#PRESTATGE_MES_INFO_ENLLAÇ" at line 40, column 13]
----
1<#assign MAX_CHARACTERS_SIZE=150>  
2<#assign geniusGroupId="6200569"> 
3 
4<#if (scopeGroupId?number != geniusGroupId?number)> 
5 
6    <#if (image.getData() != '')> 
7		<#assign imgSrc = image.getData()> 
8    <#elseif (image.urlExterna.getData() != '')> 
9		<#assign imgSrc= image.urlExterna.getData()> 
10    </#if> 
11   <#if (imgSrc != "")> 
12	<div class="busques_informacio image"> 
13            <div class="image"> 
14                <a href="${url.getData()}"><img src="${imgSrc}" /></a> 
15            </div> 
16            <div class="detail"> 
17                <a class="titol" href="${url.getData()}">${title.getData()}</a> 
18                <p>${stringUtil.shorten(htmlUtil.stripHtml(description.getData()),MAX_CHARACTERS_SIZE)}</p> 
19            </div> 
20        </div> 
21    <#else> 
22        <div class="busques_informacio no-image">         
23            <div class="detail"> 
24                <a class="titol" href="${url.getData()}">${title.getData()}</a> 
25                <p>${stringUtil.shorten(htmlUtil.stripHtml(description.getData()),MAX_CHARACTERS_SIZE)}</p> 
26            </div> 
27        </div> 
28    </#if> 
29<#else> 
30    <div class="busques_informacio"> 
31        <a class="titol" href="${url.getData()}">${title.getData()}</a> 
32        <#if (description.getData() != '' )> 
33            <div class="busques_informacio_detail"> 
34 
35            <#if (image.getData() != '' )> 
36                    <#assign imgSrc = image.getData()> 
37            <#elseif (image.urlExterna.getData() != '')> 
38                    <#assign imgSrc= image.urlExterna.getData()> 
39            </#if> 
40            <#if (imgSrc != "")>                 
41                <a href="${url.getData()}"><img src="${imgSrc}" /></a> 
42            </#if> 
43 
44                <p>${stringUtil.shorten(htmlUtil.stripHtml(description.getData()),MAX_CHARACTERS_SIZE)}</p> 
45            </div> 
46        </#if> 
47    </div> 
48</#if>