additional_plugins/serendipity_plugin_twitter/tweeter/tweeter_history.inc.php
Matthias Mees 3f41d21f6d Fix emitting the twitter timeline header at the wrong place
This was included in the ul, which doesn't make sense. Includes a
necessary CSS fix and makes the markup for that header easier to
adapt to 2.x markup.
2014-05-24 13:56:11 +02:00

24 lines
542 B
PHP

<?php
if (IN_serendipity !== true) {
die ("Don't hack!");
}
?>
<?php
if ($GLOBALS['serendipity']['version'][0] == '1') {
echo '<h2 class="serendipity_admin_tweeter_header">' . $buffer_header . '</h2>';
} else {
echo '<h3 class="serendipity_admin_tweeter_header">' . $buffer_header . '</h3>';
}
?>
<ul id="serendipity_admin_tweeter_statuses">
<?php echo $buffer; ?>
</ul>
<?php
if ($GLOBALS['serendipity']['version'][0] == '1') {
echo '<div class="tweeter_clearfix"></div>';
}
?>