Browse Source

removed duplicate log word

MOODLE_26_STABLE
Joseph Baxter 11 years ago
parent
commit
d39f0367f1
  1. 4
      locallib.php

4
locallib.php

@ -890,7 +890,7 @@ class attendance {
$url = $this->url_take($params); $url = $this->url_take($params);
// Log the change. // Log the change.
$this->log('attendance taken', $url, $USER->firstname.' '.$USER->lastname); $this->log('taken by student', $url, $USER->firstname.' '.$USER->lastname);
return true; return true;
} }
@ -950,7 +950,7 @@ class attendance {
$url = $this->url_take($params); $url = $this->url_take($params);
// Log the change. // Log the change.
$this->log('attendance taken', $url, $USER->firstname.' '.$USER->lastname); $this->log('taken', $url, $USER->firstname.' '.$USER->lastname);
redirect($this->url_manage(), get_string('attendancesuccess', 'attendance')); redirect($this->url_manage(), get_string('attendancesuccess', 'attendance'));
} }

Loading…
Cancel
Save