From cfa11fd610a71b68df00d44c4406b1085f7cdae3 Mon Sep 17 00:00:00 2001 From: David Mudrak Date: Fri, 26 Nov 2010 09:42:02 +0000 Subject: [PATCH] Fixed a string usage - no placeholder is expected here --- blog/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/lib.php b/blog/lib.php index bab93397fe3..50241dc438e 100755 --- a/blog/lib.php +++ b/blog/lib.php @@ -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)) ); } -- 2.43.0