Hello everyone,

I have installed decisions 6.x.-1.7 (in an PHP5.3 environment). So far it runs nicely. But as soon as I create a decision with the setting "Restrict voting to electoral list" I got two warnings as followed:

user warning: Table 'portal.role' doesn't exist query: SELECT COUNT(*) AS hit FROM pX_permission JOIN role ON role.rid = permission.rid WHERE FIND_IN_SET(' vote on decisions', perm) AND role.name = 'authenticated user' in .../sites/all/modules/decisions/decisions.module on line 1166.
user warning: Table 'portal.users_roles' doesn't exist query: INSERT INTO pX_decisions_electoral_list (nid, uid) SELECT '382', u.uid FROM users_roles u, permission p WHERE FIND_IN_SET(' view decisions', p.perm) AND u.rid = p.rid AND u.uid <> 0 in .../sites/all/modules/decisions/decisions.module on line 1174.

After I created the electoral list via tab (or edited the decision again), the warnings are gone.
I wonder where the tables that are marked as missing are from. There are of course no "portal.role" table nor a "portal.users_roles" table at all.
My Drupal Db's name is "portal" though. Rthe role-table is a shared one (shared_role) set up in the settings.php, while my users_roles is a one with specific prefix (pX_users_roles) like the pX_permission or pX_decisions_electoral_list (prefix is also set in the settings.php).