aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorBart van Bragt <bartvb@users.sourceforge.net>2002-01-12 22:58:22 +0000
committerBart van Bragt <bartvb@users.sourceforge.net>2002-01-12 22:58:22 +0000
commit3c93da7c361c5e6167519998ae6b06f248455032 (patch)
tree18b114ebfd746fa8fd9341b4615a9229ed8d318a /phpBB
parentd0e2efa5b88cf65e36dc2b710a8ee89b306e5f69 (diff)
downloadforums-3c93da7c361c5e6167519998ae6b06f248455032.tar
forums-3c93da7c361c5e6167519998ae6b06f248455032.tar.gz
forums-3c93da7c361c5e6167519998ae6b06f248455032.tar.bz2
forums-3c93da7c361c5e6167519998ae6b06f248455032.tar.xz
forums-3c93da7c361c5e6167519998ae6b06f248455032.zip
Fixed [size] BBcode (#502806)
git-svn-id: file:///svn/phpbb/trunk@1854 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rwxr-xr-xphpBB/templates/subSilver/bbcode.tpl2
-rw-r--r--phpBB/templates/subSilver/posting_body.tpl10
2 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/templates/subSilver/bbcode.tpl b/phpBB/templates/subSilver/bbcode.tpl
index 37ec973e68..b53bf77e10 100755
--- a/phpBB/templates/subSilver/bbcode.tpl
+++ b/phpBB/templates/subSilver/bbcode.tpl
@@ -89,7 +89,7 @@
<!-- END color_close -->
<!-- BEGIN size_open -->
-<span style="font-size: {SIZE}; line-height: normal">
+<span style="font-size: {SIZE}px; line-height: normal">
<!-- END size_open -->
<!-- BEGIN size_close -->
</span>
diff --git a/phpBB/templates/subSilver/posting_body.tpl b/phpBB/templates/subSilver/posting_body.tpl
index ea47e67737..c5971a935c 100644
--- a/phpBB/templates/subSilver/posting_body.tpl
+++ b/phpBB/templates/subSilver/posting_body.tpl
@@ -351,11 +351,11 @@ function storeCaret(textEl) {
<option style="color:white; background-color: #DEE3E7" value="white" class="genmed">{L_COLOR_WHITE}</option>
<option style="color:black; background-color: #DEE3E7" value="black" class="genmed">{L_COLOR_BLACK}</option>
</select> &nbsp;{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>
+ <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>
<td nowrap="nowrap" align="right"><span class="gensmall"><a href="javascript:bbstyle(-1)" class="genmed" onMouseOver="helpline('a')">{L_BBCODE_CLOSE_TAGS}</a></span></td>