From: Dan Marsden Date: Tue, 20 Feb 2018 23:26:47 +0000 (+1300) Subject: Fix link on subnet error. X-Git-Url: https://git.cameron1729.xyz/?a=commitdiff_plain;h=eda06042eedb745f3523529f9fff6a07c23cf69f;p=moodle-mod_attendance.git Fix link on subnet error. --- diff --git a/attendance.php b/attendance.php index 1818972..3f08027 100644 --- a/attendance.php +++ b/attendance.php @@ -47,7 +47,8 @@ if (!attendance_can_student_mark($attforsession)) { // Check if subnet is set and if the user is in the allowed range. if (!empty($attforsession->subnet) && !address_in_subnet(getremoteaddr(), $attforsession->subnet)) { - notice(get_string('subnetwrong', 'attendance')); + $url = new moodle_url('/mod/attendance/view.php', array('id' => $cm->id)); + notice(get_string('subnetwrong', 'attendance'), $url); exit; // Notice calls this anyway. }