Browse Source

https://github.com/danmarsden/moodle-mod_attendance/issues/234 (#236)

* https://github.com/danmarsden/moodle-mod_attendance/issues/234

I only found 3 files with this error:

add_form.php:   121
renderer.php:   809
sessions.php:   240

This was branched off of the MOODLE_30_STABLE branch.

* Forgot space in if() statement
MOODLE_31_STABLE
Marty Gilbert 8 years ago
committed by Dan Marsden
parent
commit
e3411c05ec
  1. 3
      add_form.php
  2. 3
      renderer.php
  3. 3
      sessions.php

3
add_form.php

@ -118,7 +118,8 @@ class mod_attendance_add_form extends moodleform {
} }
// Students can mark own attendance. // Students can mark own attendance.
if (!empty(get_config('attendance', 'studentscanmark'))) { $configcanmark = get_config('attendance', 'studentscanmark');
if (!empty($configcanmark)) {
$mform->addElement('checkbox', 'studentscanmark', '', get_string('studentscanmark', 'attendance')); $mform->addElement('checkbox', 'studentscanmark', '', get_string('studentscanmark', 'attendance'));
$mform->addHelpButton('studentscanmark', 'studentscanmark', 'attendance'); $mform->addHelpButton('studentscanmark', 'studentscanmark', 'attendance');
} else { } else {

3
renderer.php

@ -813,7 +813,8 @@ class mod_attendance_renderer extends plugin_renderer_base {
$cell->colspan = 2; $cell->colspan = 2;
$row->cells[] = $cell; $row->cells[] = $cell;
} else { } else {
if (!empty(get_config('attendance', 'studentscanmark')) && !empty($sess->studentscanmark)) { $configjs = get_config('attendance', 'studentscanmark');
if (!empty($configjs) && !empty($sess->studentscanmark)) {
// Student can mark their own attendance. // Student can mark their own attendance.
// URL to the page that lets the student modify their attendance. // URL to the page that lets the student modify their attendance.
$url = new moodle_url('/mod/attendance/attendance.php', $url = new moodle_url('/mod/attendance/attendance.php',

3
sessions.php

@ -234,7 +234,8 @@ function construct_sessions_data_for_add($formdata) {
$duration = $sesendtime - $sesstarttime; $duration = $sesendtime - $sesstarttime;
$now = time(); $now = time();
if (empty(get_config('attendance', 'studentscanmark'))) { $configcanmark = get_config('attendance', 'studentscanmark');
if (empty($configcanmark)) {
$formdata->studentscanmark = 0; $formdata->studentscanmark = 0;
} }

Loading…
Cancel
Save