From: yellowled Date: Mon, 14 Apr 2008 05:07:06 +0000 (+0000) Subject: Modified output code for serendipity_plugin_history to put the body into an additiona... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=d664f93bf9d20db5486a99842b07eb48fc4e932d;p=s9y.git Modified output code for serendipity_plugin_history to put the body into an additional div. --- diff --git a/plugins/serendipity_plugin_history/serendipity_plugin_history.php b/plugins/serendipity_plugin_history/serendipity_plugin_history.php index 6b39f53..b6b8e3a 100644 --- a/plugins/serendipity_plugin_history/serendipity_plugin_history.php +++ b/plugins/serendipity_plugin_history/serendipity_plugin_history.php @@ -190,8 +190,8 @@ class serendipity_plugin_history extends serendipity_plugin $t = ($maxlength==0 || strlen($e[$x]['title'])<=$maxlength) ? $e[$x]['title'] : (trim(serendipity_mb('substr', $e[$x]['title'], 0, $maxlength-3)).' [...]'); - echo '
' . $author . ' '. $date . " ". htmlspecialchars($t) . '
' . - strip_tags($e[$x]['body']) . '
'; + echo '
' . $author . ' '. $date . " ". htmlspecialchars($t) . '
' . '
' . + strip_tags($e[$x]['body']) . '
'; } echo (empty($outro)) ? '' : '
' . $outro . '
'; }