Bug in Twitter-Plugin v1.20
Posted: Sun Jun 13, 2010 3:35 pm
After installing v1.20 of the Twitter plugin, I got an error message:
(There's nothing like a bug tracker or the like for s9y, is there?)
Regards,
-thh
Looks like a typo, the following patch fixed it:Parse error: syntax error, unexpected '{' in [...]plugins/serendipity_plugin_twitter/serendipity_event_twitter.php on line 707
Code: Select all
--- serendipity_event_twitter.php 2010-06-13 15:33:53.579763917 +0200
+++ serendipity_event_twitter.php.OLD 2010-06-13 15:34:04.675607276 +0200
@@ -704,7 +704,7 @@
return true;
case 'backend_display':
- if (!serendipity_db_bool($this->get_config('announce_articles'))) {
+ if (!serendipity_db_bool($this->get_config('announce_articles')) {
return true;
}Regards,
-thh