From: tjhunt Date: Wed, 6 May 2009 09:03:16 +0000 (+0000) Subject: moodle_page: MDL-12212 eliminate page_tag::print_footer X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=397fff387019412cc3cb04d297cd242391a87b89;p=moodle.git moodle_page: MDL-12212 eliminate page_tag::print_footer --- diff --git a/tag/index.php b/tag/index.php index 0de525965b..ed30755679 100644 --- a/tag/index.php +++ b/tag/index.php @@ -175,6 +175,5 @@ if (blocks_have_content($pageblocks, BLOCK_POS_RIGHT) || $PAGE->user_is_editing( /// Finish the page echo ''; -$PAGE->print_footer(); - +print_footer(); ?> diff --git a/tag/pagelib.php b/tag/pagelib.php index d89b0259c1..4dcef9c6fa 100644 --- a/tag/pagelib.php +++ b/tag/pagelib.php @@ -31,10 +31,6 @@ class page_tag extends page_base { } print_header_simple($title, '', $navigation, '', '', '', $button); } - - function print_footer() { - print_footer(); - } } page_map_class(PAGE_TAG_INDEX, 'page_tag');