Skip to content

Commit

Permalink
Fixed a string usage - no placeholder is expected here
Browse files Browse the repository at this point in the history
  • Loading branch information
mudrd8mz committed Nov 26, 2010
1 parent 82c3f5d commit cfa11fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blog/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ function blog_get_options_for_course(stdClass $course, stdClass $user=null) {
if (has_capability('moodle/blog:create', $sitecontext)) {
// We can blog about this course
$options['courseadd'] = array(
'string' => get_string('blogaboutthiscourse', 'blog', get_string('course')),
'string' => get_string('blogaboutthiscourse', 'blog'),
'link' => new moodle_url('/blog/edit.php', array('action'=>'add', 'courseid'=>$course->id))
);
}
Expand Down

0 comments on commit cfa11fd

Please sign in to comment.