diff options
| author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-11-16 22:26:27 +0000 |
|---|---|---|
| committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-11-16 22:26:27 +0000 |
| commit | f2650d1e63ac624ed2df91eb60861ff94aa3e4b6 (patch) | |
| tree | f535892af9d5c3d0e07b77be79c2335c5180a36e | |
| parent | 306d36f03dadde4ed99410ea907ec82cef1848b6 (diff) | |
| download | forums-f2650d1e63ac624ed2df91eb60861ff94aa3e4b6.tar forums-f2650d1e63ac624ed2df91eb60861ff94aa3e4b6.tar.gz forums-f2650d1e63ac624ed2df91eb60861ff94aa3e4b6.tar.bz2 forums-f2650d1e63ac624ed2df91eb60861ff94aa3e4b6.tar.xz forums-f2650d1e63ac624ed2df91eb60861ff94aa3e4b6.zip | |
Fixed: [list] tags now function properly
git-svn-id: file:///svn/phpbb/trunk@4669 89ea8834-ac86-4346-8a33-228a782c2dd0
| -rw-r--r-- | phpBB/styles/subSilver/template/bbcode.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/styles/subSilver/template/bbcode.html b/phpBB/styles/subSilver/template/bbcode.html index 8c62f189dc..70fe44ba96 100644 --- a/phpBB/styles/subSilver/template/bbcode.html +++ b/phpBB/styles/subSilver/template/bbcode.html @@ -1,7 +1,8 @@ -<!-- BEGIN ulist_open --><ul><!-- END ulist_open --> +<!-- BEGIN ulist_open --><ul style="list-style-type: {LIST_TYPE}"><!-- END ulist_open --> +<!-- BEGIN ulist_open_default --><ul><!-- END ulist_open_default --> <!-- BEGIN ulist_close --></ul><!-- END ulist_close --> -<!-- BEGIN olist_open --><ol style="list-style-type:{LIST_TYPE}"><!-- END olist_open --> +<!-- BEGIN olist_open --><ol style="list-style-type: {LIST_TYPE}"><!-- END olist_open --> <!-- BEGIN olist_close --></ol><!-- END olist_close --> <!-- BEGIN listitem --><li><!-- END listitem --> |
