1
0

added default value to spamblocks required_fields option

This commit is contained in:
Ian
2014-01-17 13:27:18 +01:00
parent d7e734d106
commit 2b93742917
2 changed files with 4 additions and 3 deletions
docs
plugins/serendipity_event_spamblock

@ -5,6 +5,7 @@ Version 1.7.5 ()
------------------------------------------------------------------------
* Fixed textile PHP 5.2 compat issue
* Added default value to spamblocks required_fields option [name,comment]
Version 1.7.4 (January 11th, 2014)
@ -12,7 +13,7 @@ Version 1.7.4 (January 11th, 2014)
* Fixed emoticate plugin icon link to check for textile class
* Upgrade textile plugin libs - extends to PHP >= 5.3.
* Upgrade textile plugin libs - lib3 extends to PHP >= 5.3.
Please check for new options!
* Fixed spamblocks Captcha imagecreate() with PHP > 5.3 versions

@ -21,7 +21,7 @@ var $filter_defaults;
'smarty' => '2.6.7',
'php' => '4.1.0'
));
$propbag->add('version', '1.82');
$propbag->add('version', '1.83');
$propbag->add('event_hooks', array(
'frontend_saveComment' => true,
'external_plugin' => true,
@ -183,7 +183,7 @@ var $filter_defaults;
$propbag->add('type', 'string');
$propbag->add('name', PLUGIN_EVENT_SPAMBLOCK_REQUIRED_FIELDS);
$propbag->add('description', PLUGIN_EVENT_SPAMBLOCK_REQUIRED_FIELDS_DESC);
$propbag->add('default', '');
$propbag->add('default', 'name,comment');
break;
case 'bodyclone':