Project

General

Profile

what order is the Jump to Project menu following?

Added by Watchman Monitoring over 12 years ago

I can't find the rhyme or reason behind the order of this menu

can anyone shed some light?


Replies (2)

RE: what order is the Jump to Project menu following? - Added by Mischa The Evil over 12 years ago

See #2364. It's controller-based and respects permissions.

RE: what order is the Jump to Project menu following? - Added by Duncan Harris over 12 years ago

I was pondering this today. It seems to be a side effect of the way the hierarchy is implemented. Redmine requests the projects in order of the 'lft' column/property. This changes as you change the hierarchy. You can see the order in SQL using:

select id,name,lft,rgt
from projects p1
order by lft;

A better order would be to have projects listed alphabetically within hierarchy level. Anyone implemented this?

    (1-2/2)