Closed (outdated)
Project:
Real Name
Version:
6.x-1.4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 Jan 2012 at 11:57 UTC
Updated:
30 May 2016 at 21:54 UTC
Jump to comment: Most recent
This query:
$how_many = db_result(db_query("SELECT COUNT(*) FROM {users} WHERE status = 1 AND uid >= %d ORDER BY uid", $start));
doesn't work in postgresql database and must be replaced with:
$how_many = db_result(db_query("SELECT COUNT(uid) FROM {users} WHERE status = 1 AND uid >= %d", $start));
Look at the attached patch
| Comment | File | Size | Author |
|---|---|---|---|
| realname-postgres-patch.patch | 616 bytes | lussoluca |
Comments
Comment #1
hass commented