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:
4156626
)
MDL-41415 Events: get_string should not use new
author
Rajesh Taneja
<rajesh@moodle.com>
Tue, 27 Aug 2013 03:35:32 +0000
(11:35 +0800)
committer
Rajesh Taneja
<rajesh@moodle.com>
Tue, 27 Aug 2013 03:36:26 +0000
(11:36 +0800)
lib/classes/event/user_loggedin.php
patch
|
blob
|
blame
|
history
diff --git
a/lib/classes/event/user_loggedin.php
b/lib/classes/event/user_loggedin.php
index
79ded38
..
006485f
100644
(file)
--- a/
lib/classes/event/user_loggedin.php
+++ b/
lib/classes/event/user_loggedin.php
@@
-60,7
+60,7
@@
class user_loggedin extends \core\event\base {
* @return string
*/
public static function get_name() {
- return
new
get_string('event_user_loggedin', 'auth');
+ return get_string('event_user_loggedin', 'auth');
}
/**