From 004fb55afaa3f0dee277f708c1d7718f4ab86f13 Mon Sep 17 00:00:00 2001 From: janw Date: Tue, 6 Jun 2006 14:13:01 +0000 Subject: [PATCH] Modified helpviewer to not-scroll in the default. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3662 594d385d-05f5-0310-b6e9-bd551577e9d8 --- html/helpviewer.php | 4 ++-- ihtml/themes/default/help.tpl | 2 +- include/class_divlist.inc | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/html/helpviewer.php b/html/helpviewer.php index 511dc0667..d1828ac92 100644 --- a/html/helpviewer.php +++ b/html/helpviewer.php @@ -189,11 +189,11 @@ while($file = readdir($f)){ /* Some replacements */ $backwardlink = " - \""._("previous")."\" + \""._("previous")."\" "; $forwardlink = " - \""._("next")."\" + \""._("next")."\" "; diff --git a/ihtml/themes/default/help.tpl b/ihtml/themes/default/help.tpl index cefd1725f..2731845a7 100644 --- a/ihtml/themes/default/help.tpl +++ b/ihtml/themes/default/help.tpl @@ -23,7 +23,7 @@ -
+
{$help_contents}
diff --git a/include/class_divlist.inc b/include/class_divlist.inc index ea7e65872..a3ecfb8d5 100644 --- a/include/class_divlist.inc +++ b/include/class_divlist.inc @@ -295,7 +295,7 @@ class divlist { // if fewer than 22 Entries (list not full), print row to fill empty space //FIXME: Why 22? Isn't the size dynamic - if($this->_numEntries()<=22){ +# if($this->_numEntries()<=22){ $fill= ""; for ($i= 1; $i <= $this->cols; $i++){ if ($i == $this->cols){ @@ -303,9 +303,9 @@ class divlist { } else { $fill.= " "; } - } + } $s_return.="\n$fill"; - } +# } if($this->i_entriesPerPage == 0) { $s_return .= "\n
"; } -- 2.30.2