From eb030cb9d8839bd08cb2bd1e4f954efe37047303 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 15 Jun 2003 19:06:25 +0000 Subject: - Improvements: XHTML-ifications. Patch by GmbH. --- modules/block.module | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'modules/block.module') diff --git a/modules/block.module b/modules/block.module index e408e0730..aebde7488 100644 --- a/modules/block.module +++ b/modules/block.module @@ -163,7 +163,7 @@ function block_admin_preview() { while ($block = db_fetch_object($result)) { $block_data = module_invoke($block->module, "block", "list"); $name = $block_data[$block->delta]["info"]; - $lblocks .= " ". ($block->status == 2 ? "$name" : $name) ."$block->weight\n"; + $lblocks .= " ". ($block->status == 2 ? "$name" : $name) ."$block->weight\n"; } $lblocks .= "\n"; @@ -178,9 +178,9 @@ function block_admin_preview() { $output .= "

". t("Themes with both left and right sidebars") .":

\n"; $output .= "\n"; - $output .= " \n"; - $output .= " \n"; - $output .= " \n"; + $output .= " \n"; + $output .= " \n"; + $output .= " \n"; $output .= "
header
\n". ($lblocks ? $lblocks : " ") ." \n". ($rblocks ? $rblocks : " ") ."
footer
header
\n". ($lblocks ? $lblocks : " ") ." \n". ($rblocks ? $rblocks : " ") ."
footer
\n"; $result = db_query("SELECT * FROM blocks WHERE status > 0 ORDER BY weight"); @@ -194,16 +194,16 @@ function block_admin_preview() { $output .= "

". t("Themes with right-sidebar only") .":

\n"; $output .= "\n"; - $output .= " \n"; - $output .= " \n"; - $output .= " \n"; + $output .= " \n"; + $output .= " \n"; + $output .= " \n"; $output .= "
header
 \n". ($blocks ? $blocks : " ") ."
footer
header
 \n". ($blocks ? $blocks : " ") ."
footer
\n"; $output .= "

". t("Themes with left-sidebar only") .":

\n"; $output .= "\n"; - $output .= " \n"; - $output .= " \n"; - $output .= " \n"; + $output .= " \n"; + $output .= " \n"; + $output .= " \n"; $output .= "
header
\n". ($blocks ? $blocks : " ") ." 
footer
header
\n". ($blocks ? $blocks : " ") ." 
footer
\n"; print $output; -- cgit v1.2.3