summaryrefslogtreecommitdiff
path: root/rt/html/Elements/SelectMatch
diff options
context:
space:
mode:
Diffstat (limited to 'rt/html/Elements/SelectMatch')
-rw-r--r--rt/html/Elements/SelectMatch6
1 files changed, 3 insertions, 3 deletions
diff --git a/rt/html/Elements/SelectMatch b/rt/html/Elements/SelectMatch
index d58a9633a..c291537e1 100644
--- a/rt/html/Elements/SelectMatch
+++ b/rt/html/Elements/SelectMatch
@@ -38,13 +38,13 @@ $Default => undef
</%ARGS>
<%INIT>
my ($TrueDefault, $FalseDefault, $LikeDefault, $NotLikeDefault);
-if ($Default && $Default !~ /true/i) {
+if ($Default && $Default =~ /false/i) {
$FalseDefault = "SELECTED";
}
-elsif ($Default && $Default !~ /false/i) {
+elsif ($Default && $Default =~ /true/i) {
$TrueDefault = "SELECTED";
}
-elsif ($Default && $Default !~ /notlike/i) {
+elsif ($Default && $Default =~ /notlike/i) {
$NotLikeDefault = "SELECTED";
}
else {