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:
467c85d
)
MDL-21695 fixed help regression
author
Petr Skoda
<skodak@moodle.org>
Wed, 14 Apr 2010 08:53:30 +0000
(08:53 +0000)
committer
Petr Skoda
<skodak@moodle.org>
Wed, 14 Apr 2010 08:53:30 +0000
(08:53 +0000)
lib/outputcomponents.php
patch
|
blob
|
blame
|
history
diff --git
a/lib/outputcomponents.php
b/lib/outputcomponents.php
index
05bfb9c
..
7194f7b
100644
(file)
--- a/
lib/outputcomponents.php
+++ b/
lib/outputcomponents.php
@@
-490,7
+490,7
@@
class single_select implements renderable {
* @return void
*/
public function set_help_icon($identifier, $component = 'moodle') {
- $this->helpicon = new
old_
help_icon($identifier, $component);
+ $this->helpicon = new help_icon($identifier, $component);
}
/**
@@
-598,7
+598,7
@@
class url_select implements renderable {
* @return void
*/
public function set_help_icon($identifier, $component = 'moodle') {
- $this->helpicon = new
_
help_icon($identifier, $component);
+ $this->helpicon = new help_icon($identifier, $component);
}
/**