From 9c7b24bf49c3d8d18d37fcfbcaebfc00a080f157 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Wed, 14 Apr 2010 08:53:30 +0000 Subject: [PATCH] MDL-21695 fixed help regression --- lib/outputcomponents.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/outputcomponents.php b/lib/outputcomponents.php index 05bfb9ca447..7194f7bf58c 100644 --- 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); } /** -- 2.43.0