Reverse sort the list so new items are on top

This commit is contained in:
Pat O'Brien 2019-10-03 09:51:54 -04:00
parent d2183dce4f
commit 53e6c8dba2

View file

@ -74,7 +74,7 @@ switch($action)
}
}
if(is_array($emaillist))
ksort($emaillist);
krsort($emaillist);
$data = (count($emaillist)?$emaillist:array());
}