mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
MDL-19763 PHP Fatal Error fix on undefined plain_page()
This commit is contained in:
parent
b3b3eaced7
commit
a0a268d5c4
1 changed files with 1 additions and 1 deletions
|
@ -907,7 +907,7 @@ class bootstrap_renderer {
|
|||
public static function plain_redirect_message($encodedurl) {
|
||||
$message = '<p>' . get_string('pageshouldredirect') . '</p><p><a href="'.
|
||||
$encodedurl .'">'. get_string('continue') .'</a></p>';
|
||||
return plain_page(get_string('redirect'), $message);
|
||||
return self::plain_page(get_string('redirect'), $message);
|
||||
}
|
||||
|
||||
protected static function plain_page($title, $content) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue