Closed (fixed)
Project:
Subuser
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Aug 2009 at 14:46 UTC
Updated:
2 Jun 2011 at 19:01 UTC
The subuser module creates the database {user_relationship}, which does not follow the drupal namespace requirements. Attached is a patch to modify the module to use the {subuser_relationship} database, including updates to the view, and an update function for existing installs.
| Comment | File | Size | Author |
|---|---|---|---|
| subuser_db_namespace.diff | 3.88 KB | mikejoconnor |
Comments
Comment #1
blakehall commentedCommitted a slightly modified version of this patch to 6.x-1.x.
Thanks @mikejoconnor!
Comment #2
anouHello,
Just another thing in the subuser.patch for user.module must change :
- 'join' => 'JOIN {user_relationship} subuser ON u.uid = subuser.uid',
in
+ 'join' => 'JOIN {subuser_relationship} subuser ON u.uid = subuser.uid',
or you'll get an sql error
David