At line 848 of time_tracker.module the following code has a bug:
$users = db_query("SELECT uid, name FROM users WHERE uid > 0");
But it should be
$users = db_query("SELECT uid, name FROM {users} WHERE uid > 0");
At line 848 of time_tracker.module the following code has a bug:
$users = db_query("SELECT uid, name FROM users WHERE uid > 0");
But it should be
$users = db_query("SELECT uid, name FROM {users} WHERE uid > 0");
Comments
Comment #1
codi commentedFixed in dev.