|
From: Jonathan H. <the...@us...> - 2001-12-28 20:11:12
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv3500
Modified Files:
posting_body.tpl
Log Message:
Fix for bug #488939.. Closing all tags also closes image tags :D
Index: posting_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/posting_body.tpl,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** posting_body.tpl 2001/12/20 00:47:16 1.16
--- posting_body.tpl 2001/12/28 20:11:09 1.17
***************
*** 142,145 ****
--- 142,146 ----
eval('document.post.addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
}
+ imageTag = false; // All tags are closed including image tags :D
document.post.message.focus();
return;
|