btw this patch just prevents the weblogping-plugin to run into an error when publishing a entry by xmlrpc-plugin
Anyway the weblogping-plugin won't announce any new entries sent by xmlrpc-plugin.
This is because of the way this plugin verifies which services should be informed.
Code: Select all
if (isset($serendipity['POST']['announce_entries_' . $service['name']])) { …
It verifies POST-Values of the checkboxes used in the backend interface.
Not sure how to solve this best.
Here just a quick hack which should work. At least it seems to work for me
Code: Select all
if (isset($serendipity['POST']['announce_entries_' . $service['name']]) ||
($this->get_config($service['name']) == 'true' && !isset($serendipity['POST']))) { …
Any suggestions how to solve this in a good manner?
Regards,
Tom