diff options
author | 2003-01-12 16:33:05 +0000 | |
---|---|---|
committer | 2003-01-12 16:33:05 +0000 | |
commit | 115fd93445aa705ed2a303015a4a776fd8cc492b (patch) | |
tree | 7ddc060e370aff1540a2f2c6c88231fdc42cfca1 /template/en/default/sidebar.xul.tmpl | |
parent | Bug 153874: Query in sidebar wasn't working (diff) | |
download | bugzilla-115fd93445aa705ed2a303015a4a776fd8cc492b.tar.gz bugzilla-115fd93445aa705ed2a303015a4a776fd8cc492b.tar.bz2 bugzilla-115fd93445aa705ed2a303015a4a776fd8cc492b.zip |
XUL Chrome should use |content| over |_content|. r/a=justdave via irc
Diffstat (limited to 'template/en/default/sidebar.xul.tmpl')
-rw-r--r-- | template/en/default/sidebar.xul.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/sidebar.xul.tmpl b/template/en/default/sidebar.xul.tmpl index ad530cbb7..d856e4e88 100644 --- a/template/en/default/sidebar.xul.tmpl +++ b/template/en/default/sidebar.xul.tmpl @@ -40,7 +40,7 @@ var sidebar = 1; function load_absolute_url( aAbsoluteURL ) { - _content.location = aAbsoluteURL; + content.location = aAbsoluteURL; } function load_relative_url( aRelativeURL ) { |