From 95195155206a8cbfa0f9b73ec1f2333ceb8dc95f Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 14 May 2001 07:26:08 +0000 Subject: [PATCH] - Removed the
-tags from cvs.module to make the
 CVS log   messages wrap nicely on all browsers.  (requested by Steven)

---
 modules/cvs.module | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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(); }