Author: terrafrost Date: Mon Aug 10 23:09:10 2009 New Revision: 9951 Log: fixed bug 44805 - extra initInsertions() calls needed Modified: branches/phpBB-3_0_0/phpBB/adm/style/acp_users_signature.html branches/phpBB-3_0_0/phpBB/adm/style/editor.js branches/phpBB-3_0_0/phpBB/styles/subsilver2/template/ucp_main_drafts.html branches/phpBB-3_0_0/phpBB/styles/subsilver2/template/ucp_profile_signature.html Modified: branches/phpBB-3_0_0/phpBB/adm/style/acp_users_signature.html ============================================================================== *** branches/phpBB-3_0_0/phpBB/adm/style/acp_users_signature.html (original) --- branches/phpBB-3_0_0/phpBB/adm/style/acp_users_signature.html Mon Aug 10 23:09:10 2009 *************** *** 93,99 **** // ]]> </script> </dt> ! <dd style="margin-left: 90px;"><textarea name="signature" rows="10" cols="60" style="width: 95%;" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{SIGNATURE}</textarea></dd> <dd style="margin-left: 90px; margin-top: 5px;"> <!-- IF S_BBCODE_ALLOWED --> <label><input type="checkbox" class="radio" name="disable_bbcode"{S_BBCODE_CHECKED} /> {L_DISABLE_BBCODE}</label> --- 93,99 ---- // ]]> </script> </dt> ! <dd style="margin-left: 90px;"><textarea name="signature" rows="10" cols="60" style="width: 95%;" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();">{SIGNATURE}</textarea></dd> <dd style="margin-left: 90px; margin-top: 5px;"> <!-- IF S_BBCODE_ALLOWED --> <label><input type="checkbox" class="radio" name="disable_bbcode"{S_BBCODE_CHECKED} /> {L_DISABLE_BBCODE}</label> Modified: branches/phpBB-3_0_0/phpBB/adm/style/editor.js ============================================================================== *** branches/phpBB-3_0_0/phpBB/adm/style/editor.js (original) --- branches/phpBB-3_0_0/phpBB/adm/style/editor.js Mon Aug 10 23:09:10 2009 *************** *** 16,22 **** var is_win = ((clientPC.indexOf('win') != -1) || (clientPC.indexOf('16bit') != -1)); var baseHeight; - window.onload = initInsertions; /** * Shows the help messages in the helpline window --- 16,21 ---- Modified: branches/phpBB-3_0_0/phpBB/styles/subsilver2/template/ucp_main_drafts.html ============================================================================== *** branches/phpBB-3_0_0/phpBB/styles/subsilver2/template/ucp_main_drafts.html (original) --- branches/phpBB-3_0_0/phpBB/styles/subsilver2/template/ucp_main_drafts.html Mon Aug 10 23:09:10 2009 *************** *** 69,75 **** <table cellspacing="0" cellpadding="2" border="0"> <!-- INCLUDE posting_buttons.html --> <tr> ! <td colspan="9"><textarea class="post" name="message" rows="10" cols="70" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{DRAFT_MESSAGE}</textarea></td> </tr> <tr> <td colspan="9"> --- 69,75 ---- <table cellspacing="0" cellpadding="2" border="0"> <!-- INCLUDE posting_buttons.html --> <tr> ! <td colspan="9"><textarea class="post" name="message" rows="10" cols="70" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();">{DRAFT_MESSAGE}</textarea></td> </tr> <tr> <td colspan="9"> Modified: branches/phpBB-3_0_0/phpBB/styles/subsilver2/template/ucp_profile_signature.html ============================================================================== *** branches/phpBB-3_0_0/phpBB/styles/subsilver2/template/ucp_profile_signature.html (original) --- branches/phpBB-3_0_0/phpBB/styles/subsilver2/template/ucp_profile_signature.html Mon Aug 10 23:09:10 2009 *************** *** 27,33 **** <table cellspacing="0" cellpadding="2" border="0" width="99%"> <!-- INCLUDE posting_buttons.html --> <tr> ! <td colspan="2"><textarea class="post" name="signature" rows="10" cols="76" style="width: 90%;" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{SIGNATURE}</textarea></td> </tr> <!-- IF S_BBCODE_ALLOWED --> <tr> --- 27,33 ---- <table cellspacing="0" cellpadding="2" border="0" width="99%"> <!-- INCLUDE posting_buttons.html --> <tr> ! <td colspan="2"><textarea class="post" name="signature" rows="10" cols="76" style="width: 90%;" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();">{SIGNATURE}</textarea></td> </tr> <!-- IF S_BBCODE_ALLOWED --> <tr> |