summaryrefslogtreecommitdiffstats
path: root/templates/show_search.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_search.inc.php')
-rw-r--r--templates/show_search.inc.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/show_search.inc.php b/templates/show_search.inc.php
index 1cba5861..a1b8da5a 100644
--- a/templates/show_search.inc.php
+++ b/templates/show_search.inc.php
@@ -104,6 +104,11 @@
<tr class="<?php echo flip_class(); ?>">
<td><?php echo _('Rating'); ?></td>
<td>
+ <select id="s_rating_operator" name="s_rating_operator">
+ <option value="0" <?php if($_REQUEST['s_rating_operator']=="0") echo "selected=\"selected\""?>><?php echo _('>='); ?></option>
+ <option value="1" <?php if($_REQUEST['s_rating_operator']=="1") echo "selected=\"selected\""?>><?php echo _('<='); ?></option>
+ <option value="2" <?php if($_REQUEST['s_rating_operator']=="2") echo "selected=\"selected\""?>><?php echo _('='); ?></option>
+ </select>
<select id="s_rating" name="s_rating">
<option value="">&nbsp;</option>
<option value="1" <?php if($_REQUEST['s_rating']=="1") echo "selected=\"selected\""?>><?php echo _('One Star'); ?></option>