From 0434dd24820e8c89e7f03d01c797ca65d211121a Mon Sep 17 00:00:00 2001 From: Mary Evans Date: Mon, 21 Jan 2013 23:38:46 +0000 Subject: [PATCH] MDL-37613 mod: changed generalbox class in table to generaltable class in mod/feedback (2 files);mod/glossary (3 files);mod/wiki (1 file). --- mod/feedback/analysis.php | 2 +- mod/feedback/analysis_course.php | 2 +- mod/glossary/editcategories.html | 2 +- mod/glossary/editcategories.php | 2 +- mod/glossary/formats.php | 2 +- mod/wiki/pagelib.php | 10 +++++----- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/mod/feedback/analysis.php b/mod/feedback/analysis.php index 02a8d39f3da..105a9be52af 100644 --- a/mod/feedback/analysis.php +++ b/mod/feedback/analysis.php @@ -140,7 +140,7 @@ if ($check_anonymously) { if ($item->hasvalue == 0) { continue; } - echo ''; + echo '
'; //get the class of item-typ $itemobj = feedback_get_item_class($item->typ); diff --git a/mod/feedback/analysis_course.php b/mod/feedback/analysis_course.php index dcf186fb69e..9cc4463f418 100644 --- a/mod/feedback/analysis_course.php +++ b/mod/feedback/analysis_course.php @@ -200,7 +200,7 @@ if ($courseitemfilter > 0) { if ($item->hasvalue == 0) { continue; } - echo '
'; + echo '
'; //get the class from item-typ $itemobj = feedback_get_item_class($item->typ); $itemnr++; diff --git a/mod/glossary/editcategories.html b/mod/glossary/editcategories.html index 3b64818ce9f..083a65ccadb 100644 --- a/mod/glossary/editcategories.html +++ b/mod/glossary/editcategories.html @@ -5,7 +5,7 @@
-
+
diff --git a/mod/glossary/editcategories.php b/mod/glossary/editcategories.php index 1c67b47f75a..9e28d616788 100644 --- a/mod/glossary/editcategories.php +++ b/mod/glossary/editcategories.php @@ -205,7 +205,7 @@ if ( $action ) { ?> - +
diff --git a/mod/glossary/formats.php b/mod/glossary/formats.php index c1cd49829a2..fdea4a33fef 100644 --- a/mod/glossary/formats.php +++ b/mod/glossary/formats.php @@ -61,7 +61,7 @@ $yes = get_string("yes"); $no = get_string("no"); echo ''; -echo '
'; +echo '
'; ?>
diff --git a/mod/wiki/pagelib.php b/mod/wiki/pagelib.php index cbae4ee3e23..f95eca46e49 100644 --- a/mod/wiki/pagelib.php +++ b/mod/wiki/pagelib.php @@ -1490,7 +1490,7 @@ class page_wiki_map extends page_wiki { $table = new html_table(); $table->head = array(get_string('contributions', 'wiki') . $OUTPUT->help_icon('contributions', 'wiki')); - $table->attributes['class'] = 'wiki_editor generalbox'; + $table->attributes['class'] = 'wiki_editor generaltable'; $table->data = array(); $table->rowclasses = array(); @@ -1610,7 +1610,7 @@ class page_wiki_map extends page_wiki { $table = new html_table(); $table->head = array(get_string('pageindex', 'wiki') . $OUTPUT->help_icon('pageindex', 'wiki')); - $table->attributes['class'] = 'wiki_editor generalbox'; + $table->attributes['class'] = 'wiki_editor generaltable'; $table->data[] = array($this->render_navigation_node($tree)); echo html_writer::table($table); @@ -1649,7 +1649,7 @@ class page_wiki_map extends page_wiki { $table = new html_table(); $table->head = array(get_string('pagelist', 'wiki') . $OUTPUT->help_icon('pagelist', 'wiki')); - $table->attributes['class'] = 'wiki_editor generalbox'; + $table->attributes['class'] = 'wiki_editor generaltable'; $table->align = array('center'); foreach ($stdaux as $key => $elem) { $table->data[] = array($key); @@ -1679,7 +1679,7 @@ class page_wiki_map extends page_wiki { $table = new html_table(); $table->head = array(get_string('orphaned', 'wiki') . $OUTPUT->help_icon('orphaned', 'wiki')); - $table->attributes['class'] = 'wiki_editor generalbox'; + $table->attributes['class'] = 'wiki_editor generaltable'; $table->data = array(); $table->rowclasses = array(); @@ -1715,7 +1715,7 @@ class page_wiki_map extends page_wiki { $table = new html_table(); $table->head = array(get_string('updatedpages', 'wiki') . $OUTPUT->help_icon('updatedpages', 'wiki')); - $table->attributes['class'] = 'wiki_editor generalbox'; + $table->attributes['class'] = 'wiki_editor generaltable'; $table->data = array(); $table->rowclasses = array(); -- 2.43.0