From: nicolasconnault Date: Tue, 18 Aug 2009 00:13:44 +0000 (+0000) Subject: MDL-19823 Upgraded calls to choose_from_menu X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=508458367233a96c1c5143c2ee47bd2ab0e7745a;p=moodle.git MDL-19823 Upgraded calls to choose_from_menu --- diff --git a/tag/manage.php b/tag/manage.php index 4058357693..a6bdd1d001 100644 --- a/tag/manage.php +++ b/tag/manage.php @@ -233,7 +233,7 @@ if ($tagrecords = $DB->get_records_sql($query, $params, $table->get_page_start() $timemodified = format_time(time() - $tag->timemodified); $checkbox = ''; $text = ''; - $tagtype = choose_from_menu($existing_tagtypes, 'tagtypes['.$tag->id.']', $tag->tagtype, '', '', '0', true); + $tagtype = $OUTPUT->select(html_select::make($existing_tagtypes, 'tagtypes['.$tag->id.']', $tag->tagtype, false)); //if the tag if flagged, highlight it if ($tag->flag > 0) {