Hi
We needed the signups to show in the order people signed up, since priority is given to those who sign up first for our activities. I added the following in data.php function get_signups() to make that work, seems like it would be generally useful.
public function get_signups($task_id, $date=”)
{
$SQL = “SELECT * FROM “.$this->tables[‘signup’][‘name’].” WHERE task_id = %d “;
if (” != $date) {
$SQL .= “AND date = %s”;
}
// added this…
$SQL .= ” ORDER by id”;