From 22665704696c4c404142156217401cda5be697e6 Mon Sep 17 00:00:00 2001 From: John Denker Date: Thu, 11 Nov 2021 13:44:41 -0700 Subject: no longer any need to sort identifiers by length; better to keep them in designed-in order --- edit_algebra_form.php | 1 - 1 file changed, 1 deletion(-) (limited to 'edit_algebra_form.php') diff --git a/edit_algebra_form.php b/edit_algebra_form.php index 3ab31ac..985180d 100644 --- a/edit_algebra_form.php +++ b/edit_algebra_form.php @@ -105,7 +105,6 @@ class qtype_algebra_edit_form extends question_edit_form { // Add the initial all functions box to the list of check boxes. $funcgroup[] =& $mform->createElement('checkbox', 'all', '', get_string('allfunctions', 'qtype_algebra')); // Create a checkbox element for each function understood by the parser. -// FIXME: why do the function names show up on the page in some weird order??? for ($i = 0; $i < count(qtype_algebra_parser::$functions); $i++) { $func = qtype_algebra_parser::$functions[$i]; $funcgroup[] =& $mform->createElement('checkbox', $func, '', $func); -- cgit v1.2.3