diff --git a/docs/NEWS b/docs/NEWS index 931cf523..3dc7b55a 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -1,6 +1,14 @@ Version 2.4-alpha1 () ------------------------------------------------------------------------ + * 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, + (#646) + * Add plugin update notifications to the plugin update button and to the dashboard. diff --git a/plugins/serendipity_event_bbcode/serendipity_event_bbcode.php b/plugins/serendipity_event_bbcode/serendipity_event_bbcode.php index 047d7d88..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',