From ad68908657bff972a0c882be15d3e725057a331d Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Tue, 5 Apr 2005 12:06:30 +0000 Subject: [PATCH] fixed displaying of modules HTML output --- lam/templates/delete.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lam/templates/delete.php b/lam/templates/delete.php index 477c66cb..7d32917d 100644 --- a/lam/templates/delete.php +++ b/lam/templates/delete.php @@ -91,9 +91,12 @@ if ($_GET['type']) { // Print delete rows from modules echo "\n
"; $modules = $_SESSION['config']->get_AccountModules($_GET['type']); + $values = array(); + $tabindex = 100; + $tabindexLink = 1000; foreach ($modules as $module) { $module = new $module($_GET['type']); - $module->display_html_delete($_POST); + parseHtml(get_class($module), $module->display_html_delete($_POST), $values, true, $tabindex, $tabindexLink, $_GET['type']); } echo "
\n"; echo "
\n";