From 0fa3fb5551d6e5739809c683389c3d00f56fec4f Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Wed, 22 Jan 2003 10:37:53 +0000 Subject: [PATCH] added linebreaks to improve html readability --- presentation/Html.inc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/presentation/Html.inc b/presentation/Html.inc index 827fbd6..05184f4 100644 --- a/presentation/Html.inc +++ b/presentation/Html.inc @@ -12,37 +12,37 @@ */ function startTable($border, $width) { - return ""; + return "
\n"; } function stopTable() { - return "
"; + return "\n"; } function tableRow($align, $bgcolor, $html) { - return "$html"; + return "$html\n"; } function tableHeading($cssClassName, $colspan, $text) { - return " - $text - "; + return "\n + $text\n + \n"; } function tableData($html) { - return "$html"; + return "$html\n"; } function startTableRowCell() { - return ""; + return "\n"; } function endTableRowCell() { - return ""; + return "\n"; } function generateLink($sTargetPage, $sQueryString, $sLinkText) { - return "$sLinkText"; + return "$sLinkText\n"; } ?> -- libgit2 0.21.4