Advanced Quick Reply is a nice phpBB Mod by “Z3u5″. I’ve adopted it for many phpBB boards I developed. However, it got this tiney little problem with IE, where users are taken to the buttom of the page everytime they open a topic to read.
You may stop this by taking off:
1 | textarea.focus(); |
To disable this function, open: styles/…/template/editor.js within your phpBB3 directory then add the PHP comment tag infront of it as you see bellow:
1 2 3 4 5 6 7 8 9 | if (is_ie && typeof(baseHeight) != 'number') { //textarea.focus(); baseHeight=doc.selection.createRange().duplicate().boundingHeight; if (!document.forms[form_name]) { document.body.focus(); } } |
