abdullahrahimee / clients-oriented-ftp

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

check box is missing for the first created group #282

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.add the first group with no user assigned
2. save
3.

What is the expected output? What do you see instead?
On the group list
there should be a checkbox for this new group for action (delete etc)
there is no check box for this group

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

Please provide any additional information below.
Next group will have a checkbox
I have reproduce the issue to make sure

Original issue reported on code.google.com by access_c...@hotmail.com on 4 May 2013 at 6:57

GoogleCodeExporter commented 8 years ago
To solve it, in /groups, line 272:

<?php if ($row["id"] != '1') { ?>

replace the "1" by a "0"

<?php if ($row["id"] != '0') { ?>

Original comment by j.grest...@gmail.com on 5 May 2013 at 7:31