diff --git a/docs/NEWS b/docs/NEWS index 1ece4d22..052dc541 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -10,6 +10,9 @@ Version 2.3.3-beta1 () published blog entries and ability to prepend a mail body. Also fixes missing "keep strip tags" configuration option + * Fix: [bbcode] Get roman numerals working in bbcode plugin. + Thanks to Fabien Chabreuil! + * Fix: Force positive limits for number of entries shown on title page and in RSS feed. s9y doesn't work with 0 or negative numbers, so force our default (15) in this case, diff --git a/plugins/serendipity_event_bbcode/serendipity_event_bbcode.php b/plugins/serendipity_event_bbcode/serendipity_event_bbcode.php index bcf0b599..b97f5c57 100644 --- a/plugins/serendipity_event_bbcode/serendipity_event_bbcode.php +++ b/plugins/serendipity_event_bbcode/serendipity_event_bbcode.php @@ -17,7 +17,7 @@ class serendipity_event_bbcode extends serendipity_event $propbag->add('description', PLUGIN_EVENT_BBCODE_DESC); $propbag->add('stackable', false); $propbag->add('author', 'Jez Hancock, Garvin Hicking'); - $propbag->add('version', '2.10'); + $propbag->add('version', '2.11'); $propbag->add('requirements', array( 'serendipity' => '1.6', 'smarty' => '2.6.7', @@ -304,6 +304,12 @@ class serendipity_event_bbcode extends serendipity_event .bb-list-ordered-ua { list-style-type: upper-alpha; } +.bb-list-ordered-lr { + list-style-type:lower-roman; +} +.bb-list-ordered-ur { + list-style-type:upper-roman; +} /* serendipity_event_bbcode end */