|
From: Bart v. B. <ba...@us...> - 2002-01-12 22:58:26
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv16236
Modified Files:
bbcode.tpl posting_body.tpl
Log Message:
Fixed [size] BBcode (#502806)
Index: bbcode.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/bbcode.tpl,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** bbcode.tpl 2001/10/24 22:52:24 1.6
--- bbcode.tpl 2002/01/12 22:58:22 1.7
***************
*** 90,94 ****
<!-- BEGIN size_open -->
! <span style="font-size: {SIZE}; line-height: normal">
<!-- END size_open -->
<!-- BEGIN size_close -->
--- 90,94 ----
<!-- BEGIN size_open -->
! <span style="font-size: {SIZE}px; line-height: normal">
<!-- END size_open -->
<!-- BEGIN size_close -->
Index: posting_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/posting_body.tpl,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** posting_body.tpl 2002/01/12 19:30:29 1.21
--- posting_body.tpl 2002/01/12 22:58:22 1.22
***************
*** 352,360 ****
<option style="color:black; background-color: #DEE3E7" value="black" class="genmed">{L_COLOR_BLACK}</option>
</select> {L_FONT_SIZE}:<select name="addbbcode20" onChange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]')" onMouseOver="helpline('f')">
! <option value="7px" class="genmed">{L_FONT_TINY}</option>
! <option value="9px" class="genmed">{L_FONT_SMALL}</option>
! <option value="12px" selected class="genmed">{L_FONT_NORMAL}</option>
! <option value="18px" class="genmed">{L_FONT_LARGE}</option>
! <option value="24px" class="genmed">{L_FONT_HUGE}</option>
</select>
</span></td>
--- 352,360 ----
<option style="color:black; background-color: #DEE3E7" value="black" class="genmed">{L_COLOR_BLACK}</option>
</select> {L_FONT_SIZE}:<select name="addbbcode20" onChange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]')" onMouseOver="helpline('f')">
! <option value="7" class="genmed">{L_FONT_TINY}</option>
! <option value="9" class="genmed">{L_FONT_SMALL}</option>
! <option value="12" selected class="genmed">{L_FONT_NORMAL}</option>
! <option value="18" class="genmed">{L_FONT_LARGE}</option>
! <option value="24" class="genmed">{L_FONT_HUGE}</option>
</select>
</span></td>
|