From 8ec4de5c52ac285ae0a5471bde9a4726ae79879f Mon Sep 17 00:00:00 2001 From: Michael <Chefkeks@users.noreply.github.com> Date: Wed, 15 Apr 2015 14:27:32 +0200 Subject: [PATCH] oops: Fix bad HTML entity #2 Follow-up PR to the comment here: https://github.com/osTicket/osTicket-1.8/commit/06d3a0f3e2a4557ca72faa916859b9315635dfe4 --- include/staff/filter.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/staff/filter.inc.php b/include/staff/filter.inc.php index 85931bb9b..97bc1a995 100644 --- a/include/staff/filter.inc.php +++ b/include/staff/filter.inc.php @@ -142,7 +142,7 @@ $info=Format::htmlchars(($errors && $_POST)?$_POST:$info); <?php } ?> </select> <select name="rule_h<?php echo $i; ?>"> - <option value="0">— <?php echo __('Select One');?> ‐</option> + <option value="0">— <?php echo __('Select One');?> —</option> <?php foreach($match_types as $k=>$v){ $sel=($info["rule_h$i"]==$k)?'selected="selected"':''; -- GitLab