From 3c5206598dc0f577bf3e41a8ba1e94a2663321d6 Mon Sep 17 00:00:00 2001 From: moodler Date: Tue, 8 Feb 2005 14:49:57 +0000 Subject: [PATCH] FIxed some formatting --- admin/blocks.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/admin/blocks.php b/admin/blocks.php index 9c73c18ac6..be946c1f37 100644 --- a/admin/blocks.php +++ b/admin/blocks.php @@ -141,8 +141,8 @@ /// Print the table of all blocks $table->head = array ($strname, $strcourses, $strversion, $strhide.'/'.$strshow, $strmultiple, $strdelete, $strsettings); - $table->align = array ('LEFT', 'RIGHT', 'LEFT', 'CENTER', 'CENTER', 'CENTER', 'CENTER'); - $table->wrap = array ('NOWRAP', '', '', '', '', '', ''); + $table->align = array ('left', 'right', 'left', 'center', 'center', 'center', 'center'); + $table->wrap = array ('nowrap', '', '', '', '', '', ''); $table->size = array ('100%', '10', '10', '10', '10','12'); $table->width = '100'; @@ -162,10 +162,10 @@ if ($blocks[$blockid]->visible) { $visible = ''. - '\"\"'; + ''; } else { $visible = ''. - '\"\"'; + ''; $class = ' class="dimmed_text"'; // Leading space required! } if ($blockobject->instance_allow_multiple()) { @@ -181,7 +181,7 @@ } $table->data[] = array( - ''.$blockobject->get_title().'

', + ''.$blockobject->get_title().'', $count, $blockobject->get_version(), $visible, @@ -190,9 +190,9 @@ $settings ); } - echo '

'; + print_table($table); - echo '

'; + print_footer(); ?> -- 2.39.5