diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-11-03 20:31:05 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-11-03 20:31:05 +0000 |
commit | 18d014c7656717fe09aba0cafe2967eae7cea421 (patch) | |
tree | 7e0a54c10e7d6f70d4c64c0e76f1289038a3a389 /phpBB/styles/subsilver2 | |
parent | 61fc9605faa29d1bc5b1be8df2a4ab7f36c92264 (diff) | |
download | forums-18d014c7656717fe09aba0cafe2967eae7cea421.tar forums-18d014c7656717fe09aba0cafe2967eae7cea421.tar.gz forums-18d014c7656717fe09aba0cafe2967eae7cea421.tar.bz2 forums-18d014c7656717fe09aba0cafe2967eae7cea421.tar.xz forums-18d014c7656717fe09aba0cafe2967eae7cea421.zip |
further fixes
- fix infinite loop on checking ban for those not having ever visited the page (or removed all session cookies)
- avatar width/height switched in language files
- fix windows switching to background on IE7 (smlies window for example)
git-svn-id: file:///svn/phpbb/trunk@8224 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/subsilver2')
-rw-r--r-- | phpBB/styles/subsilver2/template/editor.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/styles/subsilver2/template/editor.js b/phpBB/styles/subsilver2/template/editor.js index 72de8ef8ff..53b8b6222f 100644 --- a/phpBB/styles/subsilver2/template/editor.js +++ b/phpBB/styles/subsilver2/template/editor.js @@ -48,7 +48,11 @@ function initInsertions() { textarea.focus(); baseHeight = doc.selection.createRange().duplicate().boundingHeight; - // document.body.focus(); + + if (!document.forms[form_name]) + { + document.body.focus(); + } } } |