diff --git a/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php b/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php
index 149dd366..c5c5a100 100644
--- a/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php
+++ b/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php
@@ -357,16 +357,16 @@ class serendipity_event_spartacus extends serendipity_event
function outputMSG($status, $msg) {
switch($status) {
case 'notice':
- echo '
 . ')
' . $msg . '
' . "\n";
+ echo ' '. $msg .'' . "\n";
break;
case 'error':
- echo ' . ')
' . $msg . '
' . "\n";
+ echo ' '. $msg .'' . "\n";
break;
default:
case 'success':
- echo ' . ')
' . $msg . '
' . "\n";
+ echo ' '. $msg .'' . "\n";
break;
}
}
@@ -462,7 +462,6 @@ class serendipity_event_spartacus extends serendipity_event
if (file_exists($target) && filesize($target) > 0) {
$data = file_get_contents($target);
$this->outputMSG('success', sprintf(PLUGIN_EVENT_SPARTACUS_FETCHED_BYTES_CACHE, strlen($data), $target));
- echo "
\n";
}
} else {
// Fetch file
@@ -574,7 +573,6 @@ class serendipity_event_spartacus extends serendipity_event
if (strlen($xml) > 0) {
$valid = true;
}
- echo '
';
}
} else {
@@ -585,7 +583,6 @@ class serendipity_event_spartacus extends serendipity_event
$target = $serendipity['serendipityPath'] . PATH_SMARTY_COMPILE . '/package_' . $url_type . $lang . '.xml';
$xml = $this->fetchfile($url, $target, $cacheTimeout, true);
- echo '
';
}
$new_crc = md5($xml);
@@ -1135,9 +1132,9 @@ class serendipity_event_spartacus extends serendipity_event
case 'backend_pluginlisting_header':
if (serendipity_db_bool($this->get_config('enable_plugins'))) {
- echo '';
- echo ' ';
- echo '
' . PLUGIN_EVENT_SPARTACUS_CHECK_EVENT . ' ';
+ echo '
';
}
@@ -1145,7 +1142,7 @@ class serendipity_event_spartacus extends serendipity_event
break;
case 'backend_pluginlisting_header_upgrade':
- echo '
' . PLUGIN_EVENT_SPARTACUS_CHECK_HINT . '';
+ echo '
' . PLUGIN_EVENT_SPARTACUS_CHECK_HINT . '';
return true;
break;