* Fix a typo in sql.attrmap. Fix by Evren Yurtesen <eyurtese@turkuamk.fi>
* Work even when register_globals if off. Suggestion from Evren Yurtesen <eyurtese@turkuamk.fi>
Also add an entry in the FAQ about that.
+* We don't need ORDER BY GroupName in show_groups.php3 since we have GROUP BY
Ver 1.61:
* Add a string encoder for greek
* If general_decode_normal_attributes is set then encode attributes in lib/ldap/change_info. In the near future
$link = @da_sql_pconnect($config);
if ($link){
$search = @da_sql_query($link,$config,
- "SELECT COUNT(*),GroupName FROM usergroup Group by GroupName ORDER BY GroupName;");
+ "SELECT COUNT(*),GroupName FROM usergroup GROUP BY GroupName;");
if ($search){
if (@da_sql_num_rows($search,$config)){
while( $row = @da_sql_fetch_array($search,$config) ){