MDL-55851 core: fixed AJAX error when user not set up

This commit is contained in:
Mark Nelson 2016-09-15 13:39:25 +08:00
parent 0b19d04836
commit 3f4f5d3bd2

View File

@ -3202,7 +3202,7 @@ EOD;
$processor = $DB->get_record('message_processors', array('name' => 'popup'));
if (isloggedin() && $processor->enabled) {
if (isloggedin() && $processor->enabled && !user_not_fully_set_up($USER)) {
$context = [
'userid' => $USER->id,
'urls' => [
@ -3223,7 +3223,7 @@ EOD;
public function message_menu() {
global $USER;
if (isloggedin()) {
if (isloggedin() && !user_not_fully_set_up($USER)) {
$context = [
'userid' => $USER->id,
'urls' => [