how to increase the number of teachers in popup menu?

Re: how to increase the number of teachers in popup menu?

by Robert Brenstein -
Number of replies: 0
Still don't know about Moodle 1.5 but I found myself the fix for 1.4.4/5:

File: /moodle/courses/teacher.php

in the middle of the code is

$ordermenu = NULL;
$ordermenu[0] = get_string("hide");
for ($i=1; $i<=8; $i++) {
  $ordermenu[$i] = $i;
}


Which has 8 hardwired for creating the popup. Easy to fix now that I found it.

It would be nice if that was at least a variable set on top of this file as it is mostly elsewhere in Moodle.