Bug 153874: Query in sidebar wasn't working

Patch by Peter Henderson (peterhenderson@usa.net)
r= kiko, a= justdave
This commit is contained in:
justdave%syndicomm.com 2003-01-12 08:16:06 +00:00
Родитель 143b5003b6
Коммит f634d9db85
2 изменённых файлов: 5 добавлений и 1 удалений

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

@ -47,7 +47,7 @@ function do_shift(l) {
function go_to (url) {
if ( typeof sidebar != "undefined" && sidebar == 1 ) {
load_relative_url(url);
load_absolute_url(url);
} else {
document.location.href = url;
}

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

@ -39,6 +39,10 @@
// Tell QuickSearch that the source of this is the sidebar
var sidebar = 1;
function load_absolute_url( aAbsoluteURL ) {
_content.location = aAbsoluteURL;
}
function load_relative_url( aRelativeURL ) {
aRelativeURL = '[% Param('urlbase') %]' + aRelativeURL;
_content.location = aRelativeURL;