View Issue Details

IDProjectCategoryView StatusLast Update
0003452mantisbtbugtrackerpublic2003-12-09 10:15
ReporterRJelinek Assigned Tovboctor  
PrioritynormalSeveritytweakReproducibilityalways
Status closedResolutionduplicate 
Product Version0.18.0rc1 
Summary0003452: Project-List is not sorted in alphabetical order
Description

The Project List in the upper right corner is not sorted in alphabetical order, so if you use many projects it is difficult to find yours.

Additional Information

As I found out the order of the project-lists (and of all project lists in other windows) are controlled by user_get_accessible_projects in user_api.php.
I changed the order from project-id to name - this is quite nicer for me.

(Patch could by applied to core/user_api.php)

TagsNo tags attached.
Attached Files
user_api.php.patch (128 bytes)   
481c481
< 					  ORDER BY name";
---
> 					  ORDER BY id";
491c491
< 					  ORDER BY p.name";
---
> 					  ORDER BY p.id";
user_api.php.patch (128 bytes)   

Relationships

duplicate of 0003453 closedvboctor Project-List is not sorted in alphabetical order 

Activities