michaelctorres / clients-oriented-ftp

Automatically exported from code.google.com/p/clients-oriented-ftp
0 stars 0 forks source link

Assigned file to user - Add order by name ASC #300

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Assign a file to user
2.If you have a lot of client this can be long to find a name because these are 
not ordered by name ASC
3.

What is the expected output? What do you see instead?
Name should be ordered by ASC

What version of the product are you using? On what operating system?
r412

Please provide any additional information below.
Adding a way to search for name can be another solution

Original issue reported on code.google.com by access_c...@hotmail.com on 19 May 2013 at 2:14

GoogleCodeExporter commented 8 years ago
solution

edit: edit-file.php 

find this line:
$cq = "SELECT id, name, level FROM tbl_users";

replace by this line:
$cq = "SELECT id, name, level FROM tbl_users ORDER BY name ASC";

Original comment by access_c...@hotmail.com on 19 May 2013 at 2:17

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r531.

Original comment by i...@subwaydesign.com.ar on 7 Mar 2014 at 8:04