From: stronk7 Date: Wed, 21 Feb 2007 17:27:26 +0000 (+0000) Subject: Setting the correct id for each table. MDL-8419 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=e12d37df2bd07d7e3547d99c770ebb2706627929;p=moodle.git Setting the correct id for each table. MDL-8419 --- diff --git a/admin/filters.php b/admin/filters.php index afd1b135e3..1568517db3 100644 --- a/admin/filters.php +++ b/admin/filters.php @@ -187,7 +187,7 @@ $table->column_style('settings', 'text-align', 'center'); $table->define_headers(array($txt->name, $txt->hideshow, $txt->updown, $txt->settings)); $table->define_baseurl("$CFG->wwwroot/$CFG->admin/filters.php"); - $table->set_attribute('id', 'blocks'); + $table->set_attribute('id', 'filters'); $table->set_attribute('class', 'flexible generaltable generalbox'); $table->set_attribute('style', 'margin:auto;'); $table->set_attribute('cellpadding', '5'); diff --git a/admin/modules.php b/admin/modules.php index 7fe5a23c12..6795532167 100644 --- a/admin/modules.php +++ b/admin/modules.php @@ -164,7 +164,8 @@ $table->column_style('delete', 'text-align', 'center'); $table->column_style('settings', 'text-align', 'center'); $table->define_headers(array($stractivitymodule, $stractivities, $strversion, "$strhide/$strshow", $strdelete, $strsettings)); - $table->define_baseurl($CFG->wwwroot.'/'.$CFG->admin.'/blocks.php'); + $table->define_baseurl($CFG->wwwroot.'/'.$CFG->admin.'/modules.php'); + $table->set_attribute('id', 'modules'); $table->set_attribute('class', 'flexible generaltable generalbox'); $table->set_attribute('style', 'margin:auto;'); $table->set_attribute('cellpadding', '5');