From: jerome Date: Mon, 31 Aug 2009 07:13:41 +0000 (+0000) Subject: MDL-19763 PHP Fatal Error fix on undefined plain_page() X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=a0a268d5c455d04737b8483543f280a969522193;p=moodle.git MDL-19763 PHP Fatal Error fix on undefined plain_page() --- diff --git a/lib/setuplib.php b/lib/setuplib.php index 66f43b08b9..f938876c93 100644 --- a/lib/setuplib.php +++ b/lib/setuplib.php @@ -907,7 +907,7 @@ class bootstrap_renderer { public static function plain_redirect_message($encodedurl) { $message = '

' . get_string('pageshouldredirect') . '

'. get_string('continue') .'

'; - return plain_page(get_string('redirect'), $message); + return self::plain_page(get_string('redirect'), $message); } protected static function plain_page($title, $content) {