From a0a268d5c455d04737b8483543f280a969522193 Mon Sep 17 00:00:00 2001 From: jerome Date: Mon, 31 Aug 2009 07:13:41 +0000 Subject: [PATCH] MDL-19763 PHP Fatal Error fix on undefined plain_page() --- lib/setuplib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.39.5