Merge branch 'MDL-41440_master' of https://github.com/markn86/moodle

This commit is contained in:
Dan Poltawski 2013-09-03 14:10:02 +08:00
commit 5c1ba238d2
3 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ class course_completed extends base {
* @return string
*/
public static function get_name() {
return new get_string('eventcoursecompleted', 'core_completion');
return get_string('eventcoursecompleted', 'core_completion');
}
/**

View File

@ -49,7 +49,7 @@ class course_completion_updated extends base {
* @return string
*/
public static function get_name() {
return new get_string('eventcoursecompletionupdated', 'core_completion');
return get_string('eventcoursecompletionupdated', 'core_completion');
}
/**

View File

@ -40,7 +40,7 @@ class course_module_completion_updated extends base {
* @return string
*/
public static function get_name() {
return new get_string('eventcoursemodulecompletionupdated', 'core_completion');
return get_string('eventcoursemodulecompletionupdated', 'core_completion');
}
/**