Monday 12 January 2004 4:15:29 am
Hi Using Ez 3.3.1 for site where I am making an template which require various output whereever there is an actual image or not. By reading here (New image systems, http://ez.no/developer/ez_publish_3/releases/ez_publish_3_3/new_image_system) I have learnt this:
{let content=$node.data_map.thumbnail.content}
{section show=$content.is_valid}
We have an image.
{section-else}
No image has been uploaded.
{/section} {/let} I rewritte this in order to skip the "let" to this:
{section show=$node.data_map.thumbnail.content.is_valid}
We have an image.
{section-else}
No image has been uploaded.
{/section} {/let} But this cause EZ to crash! Anyone know why???
Update: This also causes EZ to crash: {$node.data_map.thumbnail.content.medium.full_path}
Cheers Tore
|