Topic: Sorted plugins list

./include/common_admin.php

line 77 - 81

    // Did we find any plugins?
    if (!empty($plugins))
    {

?>

line 77 - 81 with sorting of plugins

    // Did we find any plugins?
    if (!empty($plugins))
    {
        sort($plugins);
?>

I don't see no reason why not. I see a few why to. Your call Rickard.

echo "deadram"; echo; fortune;

Re: Sorted plugins list

It is sorted. But by filename. So first the AMP/AP, then the actual names.

Re: Sorted plugins list

Actually, the PHP doesn't sort the list, so the order depends on the OS

Re: Sorted plugins list

Yeah, what Smartys said.

PHP manual wrote:

Note: The order in which directory entries are returned by the read method is system-dependent.

Re: Sorted plugins list

Right, I always thought it was sorted tongue