diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2011-09-07 16:50:55 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-09-07 16:50:55 +0200 |
commit | 87c4a3b9273bbeb04e7c4aa8d06a12186f744fb7 (patch) | |
tree | 1e2f136150bf774a5191eea3bffeea6df78dea41 | |
parent | 3d9226a5e915c2ea85af0c37a85ac091ec4fb31e (diff) | |
download | bugzilla-87c4a3b9273bbeb04e7c4aa8d06a12186f744fb7.tar.gz bugzilla-87c4a3b9273bbeb04e7c4aa8d06a12186f744fb7.tar.xz |
Bug 684744: All fields in the "People" section are reset when clicking "Edit Search"
r=glob a=LpSolit
-rwxr-xr-x | query.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -107,7 +107,7 @@ sub PrefillForm { # If the name ends in a number (which it does for the fields which # are part of the email searching), we use the array # positions to show the defaults for that number field. - elsif ($name =~ /^(\w)(\d)$/) { + elsif ($name =~ /^(\w+)(\d)$/) { $default{$1}->[$2] = $values[0]; } else { |