Merge pull request #348 from catalyst/issue-347

[#347] Fix typo in the title link
This commit is contained in:
Scott Verbeek
2024-10-16 11:07:39 +10:00
committed by GitHub

View File

@@ -58,7 +58,7 @@ class planned_table extends base_table {
public function show_data(array $outages) {
foreach ($outages as $outage) {
$title = html_writer::link(
new moodle_url('/auth/outage/edit.php', ['id' => $outage->id]),
new moodle_url('/auth/outage/edit.php', ['edit' => $outage->id]),
$outage->get_title(),
['title' => get_string('edit')]
);