summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-04 04:26:20 +0100
committerAndrew Dolgov <[email protected]>2007-05-04 04:26:20 +0100
commitfe8d2059648bfaf773277918927fcd2af4f314a0 (patch)
tree141d507d3ee894d9bd714543d9cbb28caef2eeae /prefs.js
parent87b9fb65321ec077a5d062f571c8384136c0fdc4 (diff)
save active tab in prefs, fix schema
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/prefs.js b/prefs.js
index bf72209b7..d9eb9024d 100644
--- a/prefs.js
+++ b/prefs.js
@@ -1298,7 +1298,7 @@ function init_second_stage() {
try {
active_tab = getInitParam("prefs_active_tab");
- if (!active_tab) active_tab = "genConfig";
+ if (!active_tab || active_tab == '0') active_tab = "genConfig";
document.onkeydown = pref_hotkey_handler;