mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
- bug 150 fixed: in category permissions management, wrong column name when
using an external users table. git-svn-id: http://piwigo.org/svn/trunk@873 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -272,7 +272,7 @@ $query = '
|
||||
SELECT '.$conf['user_fields']['id'].' AS id,
|
||||
'.$conf['user_fields']['username'].' AS username
|
||||
FROM '.USERS_TABLE.'
|
||||
WHERE id != '.$conf['guest_id'].'
|
||||
WHERE '.$conf['user_fields']['id'].' != '.$conf['guest_id'].'
|
||||
;';
|
||||
$result = pwg_query($query);
|
||||
while($row = mysql_fetch_array($result))
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2005-09-21 Pierrick LE GALL
|
||||
|
||||
* bug 150 fixed: in category permissions management, wrong column
|
||||
name when using an external users table.
|
||||
|
||||
2005-09-20 Pierrick LE GALL
|
||||
|
||||
* update: upgrade from 1.4.0 or 1.4.1. Upgrade from 1.3.x is not
|
||||
|
||||
Reference in New Issue
Block a user