New experimental login hashing
This commit is contained in:
@ -377,7 +377,7 @@ function serendipity_fetchUsers($user = '', $group = null, $is_count = false) {
|
||||
if ($serendipity['dbType'] == 'postgres' ||
|
||||
$serendipity['dbType'] == 'pdo-postgres') {
|
||||
// Why does PostgreSQL keep doing this to us? :-)
|
||||
$query_group = 'GROUP BY a.authorid, a.realname, a.username, a.password, a.mail_comments, a.mail_trackbacks, a.email, a.userlevel, a.right_publish';
|
||||
$query_group = 'GROUP BY a.authorid, a.realname, a.username, a.password, a.hashtype, a.mail_comments, a.mail_trackbacks, a.email, a.userlevel, a.right_publish';
|
||||
$query_distinct = 'DISTINCT';
|
||||
} else {
|
||||
$query_group = 'GROUP BY a.authorid';
|
||||
@ -392,6 +392,7 @@ function serendipity_fetchUsers($user = '', $group = null, $is_count = false) {
|
||||
a.realname,
|
||||
a.username,
|
||||
a.password,
|
||||
a.hashtype,
|
||||
a.mail_comments,
|
||||
a.mail_trackbacks,
|
||||
a.email,
|
||||
@ -418,6 +419,7 @@ function serendipity_fetchUsers($user = '', $group = null, $is_count = false) {
|
||||
a.realname,
|
||||
a.username,
|
||||
a.password,
|
||||
a.hashtype,
|
||||
a.mail_comments,
|
||||
a.mail_trackbacks,
|
||||
a.email,
|
||||
|
Reference in New Issue
Block a user