diff --git a/serendipity_event_adminnotes/ChangeLog b/serendipity_event_adminnotes/ChangeLog index 51d08405..b74a8de2 100644 --- a/serendipity_event_adminnotes/ChangeLog +++ b/serendipity_event_adminnotes/ChangeLog @@ -1,2 +1,3 @@ +0.10: Don't emit backend link twice in 1.x (yellowled) 0.9: Use serendipity 2.0 backend hook 0.8: Added additional backend markup for 2.0 backend (yellowled) \ No newline at end of file diff --git a/serendipity_event_adminnotes/serendipity_event_adminnotes.php b/serendipity_event_adminnotes/serendipity_event_adminnotes.php index 8764cc26..523111bb 100644 --- a/serendipity_event_adminnotes/serendipity_event_adminnotes.php +++ b/serendipity_event_adminnotes/serendipity_event_adminnotes.php @@ -27,7 +27,7 @@ class serendipity_event_adminnotes extends serendipity_event { 'php' => '4.1.0' )); - $propbag->add('version', '0.9'); + $propbag->add('version', '0.10'); $propbag->add('author', 'Garvin Hicking, Matthias Mees'); $propbag->add('stackable', false); $propbag->add('configuration', array('feedback', 'limit', 'html', 'markup', 'cutoff')); @@ -434,6 +434,7 @@ class serendipity_event_adminnotes extends serendipity_event { ?> add('description', PLUGIN_EVENT_DBCLEAN_DESC); $propbag->add('stackable', false); $propbag->add('author', 'Malte Paskuda, Matthias Mees'); - $propbag->add('version', '0.2.5'); + $propbag->add('version', '0.2.6'); $propbag->add('requirements', array( 'serendipity' => '0.8' )); @@ -87,11 +87,11 @@ class serendipity_event_dbclean extends serendipity_event { break; case 'backend_sidebar_admin': - echo ''; + if ($serendipity['version'][0] == '1') { + echo ''; + } else { + echo '
  • ' .PLUGIN_EVENT_DBCLEAN_NAME .'
  • '; + } return true; break; diff --git a/serendipity_event_spamblock_bayes/serendipity_event_spamblock_bayes.php b/serendipity_event_spamblock_bayes/serendipity_event_spamblock_bayes.php index afcb9081..aa56363a 100644 --- a/serendipity_event_spamblock_bayes/serendipity_event_spamblock_bayes.php +++ b/serendipity_event_spamblock_bayes/serendipity_event_spamblock_bayes.php @@ -1268,6 +1268,7 @@ class serendipity_event_spamblock_bayes extends serendipity_event { '; } + } else { } return true; break; diff --git a/serendipity_plugin_twitter/ChangeLog b/serendipity_plugin_twitter/ChangeLog index a7bb6504..bb982d11 100644 --- a/serendipity_plugin_twitter/ChangeLog +++ b/serendipity_plugin_twitter/ChangeLog @@ -9,6 +9,10 @@ TODO: * Twitter announcements/credentials etc. per author instead of only per central blog +1.63 +-------------------------- + * Fix emitting the backend nav link twice (yellowled) + 1.62 -------------------------- * Emit the twitter timeline header at the proper place in the markup, diff --git a/serendipity_plugin_twitter/plugin_version.inc.php b/serendipity_plugin_twitter/plugin_version.inc.php index 73677e17..8aed5d70 100644 --- a/serendipity_plugin_twitter/plugin_version.inc.php +++ b/serendipity_plugin_twitter/plugin_version.inc.php @@ -1,4 +1,4 @@