|
From: Kevin M. S. <sh...@cg...> - 2001-11-12 04:25:31
|
I found a bug/typo.
I have installed version 0.6.16.
The SQL SELECT statement bombed when attempting to add departments
during the Add User process. The initial query declaration was missing
a space at the end, thus bleeding it into the "WHERE.." portion of the
query.
Any questions, shoot me an email.
-k
I tracked it down and found it here:
line #: 66
file: scripts/adduser.scp.php
The line was:
$query = "SELECT d_name FROM userdepartments";
I should be:
$query = "SELECT d_name FROM userdepartments ";
|