Skip to content

Commit

Permalink
MDL-32605 calendar: Fixing the missing parameter for get_string call
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitagarwal committed Jun 27, 2012
1 parent 6be7840 commit 069f4d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calendar/delete.php
Expand Up @@ -108,7 +108,7 @@
if (!empty($event->eventrepeats) && $event->eventrepeats > 0) {
$url = new moodle_url(CALENDAR_URL.'delete.php', array('id'=>$event->repeatid, 'confirm'=>true, 'repeats'=>true));
$buttons .= $OUTPUT->single_button($url, get_string('deleteall'));
$repeatspan = '<br /><br /><span>'.get_string('youcandeleteallrepeats', 'calendar').'</span>';
$repeatspan = '<br /><br /><span>'.get_string('youcandeleteallrepeats', 'calendar', $event->eventrepeats).'</span>';
}

// And add the cancel button
Expand Down

0 comments on commit 069f4d8

Please sign in to comment.