diff --git a/presentation/Html.inc b/presentation/Html.inc
index 01fac3e..2de78dd 100644
--- a/presentation/Html.inc
+++ b/presentation/Html.inc
@@ -16,7 +16,7 @@ function startTable($border, $width) {
}
function tableCaption($sCaption) {
- return "
$sCaption\n";
+ return "$sCaption\n";
}
function stopTable() {
@@ -30,8 +30,8 @@ function tableRow($align, $bgcolor, $html) {
function tableHeading($cssClassName, $colspan, $text) {
return "\n
- $text\n
- | \n";
+ $text\n
+ \n";
}
function tableData($html, $iColspan = 1) {
@@ -47,52 +47,47 @@ function startTableRowCell() {
}
function textInput($sId, $sValue) {
- return "\n";
+ return "\n";
}
function endTableRowCell() {
return "\n";
}
-function generateLink($sTargetPage, $sQueryString, $sLinkText) {
- $sQueryStringDelimiter = (strstr($sTargetPage, "?") ? "&" : "?");
- return "$sLinkText\n";
-}
-
function generateImage($sImageSource) {
return "
";
}
function getNumberStringValidationJavaScript() {
- return "\n";
+ return "\n";
}
?>