From 65ad781927b3fa8a0ee6931900db8ee352698706 Mon Sep 17 00:00:00 2001 From: Paul Arthur Date: Sat, 31 Mar 2012 19:26:10 -0400 Subject: Fix display of logic operator in search It could be in either $_REQUEST or a playlist object, so we need to check the correct one. --- templates/show_rules.inc.php | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'templates') diff --git a/templates/show_rules.inc.php b/templates/show_rules.inc.php index 063c721b..e588f23a 100644 --- a/templates/show_rules.inc.php +++ b/templates/show_rules.inc.php @@ -20,7 +20,15 @@ */ ?> - +logic_operator; +} +else { + $logic_operator = $_REQUEST['operator']; +} +$logic_operator = strtolower($logic_operator); +?> @@ -31,8 +39,8 @@ -- cgit