Due to the PEAR HTTP_Request2 requirement this plugin no longer works with serendipity 1.x.

@mattsches - maybe you can add a fallback and check for $serendipity['version'], and if its lower than 2, you could use the "old" style PEAR HTTP_Request method?
This commit is contained in:
Garvin Hicking 2014-05-14 14:39:15 +02:00
parent ab98633f9a
commit efc06d8dec

View file

@ -45,7 +45,7 @@ class serendipity_event_lsrstopper extends serendipity_event
$propbag->add('author', 'Matthias Gutjahr'); $propbag->add('author', 'Matthias Gutjahr');
$propbag->add('version', '0.3'); $propbag->add('version', '0.3');
$propbag->add('requirements', array( $propbag->add('requirements', array(
'serendipity' => '1.6', 'serendipity' => '2.0',
'smarty' => '2.6.7', 'smarty' => '2.6.7',
'php' => '5.2' 'php' => '5.2'
)); ));