diff --git a/modules/cvs.module b/modules/cvs.module index 71e7b5ce4a8..8aaf65b0895 100644 --- a/modules/cvs.module +++ b/modules/cvs.module @@ -25,11 +25,11 @@ function cvs_page() { $output .= "File: $cvs->files
"; $output .= "Date: ". format_date($cvs->timestamp) ."
"; $output .= "User: $cvs->user
"; - $output .= "\n". htmlentities($cvs->message) ."
"; + $output .= "\n". nl2br(htmlentities($cvs->message)) ."
"; } $theme->header(); - $theme->box("CVS commit messages", "
$output
"); + $theme->box("CVS commit messages", "
$output
"); $theme->footer(); }