summaryrefslogtreecommitdiffstats
path: root/themes/default/templates/tags.tpl
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2009-05-23 09:45:29 +0200
committerAndreas Unterkircher <unki@netshadow.at>2009-05-23 09:45:29 +0200
commitea36e81b91c8689ae44d413eca4697d1993ac30b (patch)
tree22630855ca7bf23fb0b8652f90d9e5b8e4f2c704 /themes/default/templates/tags.tpl
parent6216473e5065117651a08931182e7ca9f0cb41a2 (diff)
avoid notice messages about undefined variables, resolves #179
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'themes/default/templates/tags.tpl')
-rw-r--r--themes/default/templates/tags.tpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/default/templates/tags.tpl b/themes/default/templates/tags.tpl
index 817cfbc..8a9521e 100644
--- a/themes/default/templates/tags.tpl
+++ b/themes/default/templates/tags.tpl
@@ -8,7 +8,7 @@
&nbsp;
<input type="radio" name="condition" value="or" onclick="Tags('condition', this);" {if $current_condition == "or" } checked="checked" { /if } title="OR condition" />||
<input type="radio" name="condition" value="and" onclick="Tags('condition', this);" {if $current_condition == "and" } checked="checked" { /if } title="AND condition" />&amp;&amp;
-{ if $preset_selected_tags }
+{ if isset($preset_selected_tags) }
<div id="selected_tags">{ $preset_selected_tags }</div>
{ else }
<div id="selected_tags">no tags selected</div>