Trying to get rid of the undefined index genres notice.

This commit is contained in:
Darko
2015-08-12 13:44:37 +02:00
parent ccfb016713
commit 414a41fcae
2 changed files with 4 additions and 4 deletions
@@ -270,7 +270,7 @@
</th>
<td>{$xxx.actors}</td>
</tr>
{if $xxx.director != ""}
{if isset($xxx.director) && $xxx.director != ""}
<tr>
<th width="140">
Director
@@ -278,7 +278,7 @@
<td>{$xxx.director}</td>
</tr>
{/if}
{if $xxx.genres != ""}
{if isset($xxx.genres) && $xxx.genres != ""}
<tr>
<th width="140">
Genre
@@ -270,7 +270,7 @@
</th>
<td>{$xxx.actors}</td>
</tr>
{if $xxx.director != ""}
{if isset($xxx.director) && $xxx.director != ""}
<tr>
<th width="140">
Director
@@ -278,7 +278,7 @@
<td>{$xxx.director}</td>
</tr>
{/if}
{if $xxx.genres != ""}
{if isset($xxx.genres) && $xxx.genres != ""}
<tr>
<th width="140">
Genre