Merge branch 'MDL-31959' of git://github.com/rwijaya/moodle

This commit is contained in:
Aparup Banerjee 2012-08-29 15:33:31 +08:00
commit 730d005383

View File

@ -61,7 +61,7 @@ $user = $DB->get_record('user', array('id' => $userid));
if ($user->deleted) {
$PAGE->set_context(context_system::instance());
echo $OUTPUT->header();
echo $OUTPUT->heading(get_string('userdeleted'));
echo $OUTPUT->notification(get_string('userdeleted'));
echo $OUTPUT->footer();
die;
}
@ -82,7 +82,7 @@ if (!$currentuser &&
$PAGE->set_url('/user/profile.php', array('id'=>$userid));
$PAGE->navbar->add($struser);
echo $OUTPUT->header();
echo $OUTPUT->heading(get_string('usernotavailable', 'error'));
echo $OUTPUT->notification(get_string('usernotavailable', 'error'));
echo $OUTPUT->footer();
exit;
}