1
0

Add more documentation references to plugin manager

This commit is contained in:
Garvin Hicking
2008-11-21 12:20:07 +00:00
parent 9e379a5319
commit 5abdfe384f
67 changed files with 298 additions and 31 deletions

View File

@@ -39,7 +39,7 @@ class serendipity_event_spartacus extends serendipity_event
$propbag->add('description', PLUGIN_EVENT_SPARTACUS_DESC);
$propbag->add('stackable', false);
$propbag->add('author', 'Garvin Hicking');
$propbag->add('version', '2.20');
$propbag->add('version', '2.21');
$propbag->add('requirements', array(
'serendipity' => '0.9',
'smarty' => '2.6.7',
@@ -744,6 +744,14 @@ class serendipity_event_spartacus extends serendipity_event
$pluginstack[$i]['name'] = $childtree['value'];
break;
case 'website':
$pluginstack[$i]['website'] = $childtree['value'];
break;
case 'changelog':
$pluginstack[$i]['changelog'] = $childtree['value'];
break;
case 'groups':
$pluginstack[$i]['groups'] = explode(',', $childtree['value']);
break;