Hello David,
is it possible that the feeds on the admin page will be displayed and ordered so that "registered" feeds are listed first and then "unregistered/deregistered" feeds? (old version).
Regards,
Harry
Not yet tested, but it makes sense.
Very helpful ! Thanks David.
Hi Harry,
In admin/index.php, look for the following code on line 90:
asort($filenames);
...and REPLACE that with:
function cmp($a, $b)
{
if (
isset($feeds[$a]["registered"])
&&
!isset($feeds[$b]["registered"])
)
{
return -1;
}
else
{
return strcmp($a,$b);
}
}
usort($filenames,"cmp");
Hope this helps!
Cheers,
David.