diff --git a/templates/blocks/publisher_items_columns.tpl b/templates/blocks/publisher_items_columns.tpl
index 81cc1a2f..49afa949 100644
--- a/templates/blocks/publisher_items_columns.tpl
+++ b/templates/blocks/publisher_items_columns.tpl
@@ -55,7 +55,7 @@
- <{if $item.subitem}>
+ <{if $item.subitem|default:false}>
<{$smarty.const._MB_PUBLISHER_MORE}>
diff --git a/templates/blocks/publisher_items_menu.tpl b/templates/blocks/publisher_items_menu.tpl
index 20f3d5ed..270c6633 100644
--- a/templates/blocks/publisher_items_menu.tpl
+++ b/templates/blocks/publisher_items_menu.tpl
@@ -1,13 +1,13 @@
- <{if $block.currentcat}> <{$block.currentcat}> <{/if}>
+ <{if $block.currentcat|default:''}> <{$block.currentcat}> <{/if}>
<{foreach item=category from=$block.categories}>
<{$category.categoryLink}>
- <{if $category.items}>
+ <{if $category.items|default:''}>
<{foreach item=item from=$category.items}> <{$item.titleLink}> <{/foreach}>
<{/if}>
<{/foreach}>
|
-
\ No newline at end of file
+
diff --git a/templates/blocks/publisher_items_spot.tpl b/templates/blocks/publisher_items_spot.tpl
index 151f241f..1cda6699 100644
--- a/templates/blocks/publisher_items_spot.tpl
+++ b/templates/blocks/publisher_items_spot.tpl
@@ -59,7 +59,7 @@
<{/foreach}>
<{/if}>
-<{if $block.lang_displaymore}>
+<{if $block.lang_displaymore|default:''}>
<{/if}>
diff --git a/templates/blocks/publisher_search_block.tpl b/templates/blocks/publisher_search_block.tpl
index d1616384..7fae96e3 100644
--- a/templates/blocks/publisher_search_block.tpl
+++ b/templates/blocks/publisher_search_block.tpl
@@ -18,7 +18,7 @@
<{$smarty.const._CO_PUBLISHER_CATEGORY}>
- <{$block.category_select}> |
+ <{$block.category_select|default:''}> |
- <{if $block.search_rule}>
+ <{if $block.search_rule|default:''}>
<{$smarty.const._SR_SEARCHRULE}>
|