Closed (fixed)
Project:
Memcache API and Integration
Version:
5.x-1.8
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Nov 2008 at 17:12 UTC
Updated:
25 Nov 2008 at 03:12 UTC
Function "sess_user_load" :
$user = db_fetch_object(db_query("SELECT u.* FROM {user} u WHERE u.uid = %d", $session->uid));
Should be :
$user = db_fetch_object(db_query("SELECT u.* FROM {users} u WHERE u.uid = %d", $session->uid));
Comments
Comment #1
jeremy commentedNice find, thanks! (BTW: when you file bugs, don't put them into the "fixed" status before code is committed, or the bug fix may actually get lost!)
Committed in 5.x, 6.x, and HEAD.