Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82c3f5d
)
Fixed a string usage - no placeholder is expected here
author
David Mudrak
<david.mudrak@gmail.com>
Fri, 26 Nov 2010 09:42:02 +0000
(09:42 +0000)
committer
David Mudrak
<david.mudrak@gmail.com>
Fri, 26 Nov 2010 09:42:02 +0000
(09:42 +0000)
blog/lib.php
patch
|
blob
|
blame
|
history
diff --git
a/blog/lib.php
b/blog/lib.php
index
bab9339
..
50241dc
100755
(executable)
--- 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))
);
}