On Wed, 2004-10-13 at 03:45, Michael Wray wrote:
> Aside from hacking my borrowed theme, is there a way to control the order
> Modules are listed in aside from the Display Name. It appears to me that
> the Display Name is what they are sorted on in every Theme I've used, and I
> would prefer they be sorted on some other item, such as the actual Module
> Name, so that I can control what order they appear in in the same fashion I
> do my Categories.
The only way to do this is to modify the theme code..
It would be a trivial change though, something like
@mods = &get_all_module_infos();
@mods = sort { $a->{'dir'} cmp $b->{'dir'} } @mods;
- Jamie
|