aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/bbcode.php
diff options
context:
space:
mode:
authorDominik Dröscher <dhn2@users.sourceforge.net>2007-03-09 19:01:40 +0000
committerDominik Dröscher <dhn2@users.sourceforge.net>2007-03-09 19:01:40 +0000
commitd165af785d01640a82d6d8076fbb979b00a1ec38 (patch)
tree640271d44c3ae33be14df19997cf5aef0dbb68e0 /phpBB/includes/bbcode.php
parente43201191317b788c2df84302e77342b57c944ae (diff)
downloadforums-d165af785d01640a82d6d8076fbb979b00a1ec38.tar
forums-d165af785d01640a82d6d8076fbb979b00a1ec38.tar.gz
forums-d165af785d01640a82d6d8076fbb979b00a1ec38.tar.bz2
forums-d165af785d01640a82d6d8076fbb979b00a1ec38.tar.xz
forums-d165af785d01640a82d6d8076fbb979b00a1ec38.zip
#8576
Introducing percentage based font sizing for the font-site BBCode git-svn-id: file:///svn/phpbb/trunk@7157 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/bbcode.php')
-rw-r--r--phpBB/includes/bbcode.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php
index ef0e80d184..e2d8b7cde4 100644
--- a/phpBB/includes/bbcode.php
+++ b/phpBB/includes/bbcode.php
@@ -392,7 +392,7 @@ class bbcode
'u_open' => '<span style="text-decoration: underline">',
'u_close' => '</span>',
'img' => '<img src="$1" alt="' . $user->lang['IMAGE'] . '" />',
- 'size' => '<span style="font-size: $1px; line-height: normal">$2</span>',
+ 'size' => '<span style="font-size: $1%; line-height: normal">$2</span>',
'color' => '<span style="color: $1">$2</span>',
'email' => '<a href="mailto:$1">$2</a>'
);