Fix for but 76073: - and + didn't work in quicksearch in IE and Opera

Patch by Andreas Franke <afranke@ags.uni-sb.de>
r= justdave@syndicomm.com
This commit is contained in:
justdave%syndicomm.com 2001-06-28 16:27:37 +00:00
Родитель e95335dcaf
Коммит f321dcd882
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -453,12 +453,12 @@ function make_query_URL(url, input, searchLong) {
w = word[i];
negation = false;
if (w[0] == "-") {
if (w.charAt(0) == "-") {
negation = true;
w = w.substring(1);
}
switch (w[0]) {
switch (w.charAt(0)) {
case "+":
alternative = w.substring(1).split(/[|,]/);
for (j=0; j<alternative.length; j++)