Notes |
|
(0005868)
|
user71
|
2005-06-01 00:00
(edited on: 2008-06-12 09:43) |
|
|
|
(0002673)
|
jpabloae
|
2007-11-16 12:27
(edited on: 2008-06-12 09:23) |
|
Logged In: YES
user_id=1603191
Originator: YES
There are two problems in src/org/openbravo/base/secureApp/HttpSecureAppServlet.java:
1. strRole = DefaultOptionsData.defaultRole(this, strUserAuth);
if(strRole == null)
strRole = DefaultOptionsData.getDefaultRole(this, strUserAuth);
"DefaultOptionsData.defaultRole(this, strUserAuth)" returns NULL. But manually running that sql query it returns "0".
2. The DefaultOptionsData.getDefaultRole, in src/org/openbravo/base/secureApp/DefaultOptions_data.xsql:
It explicitly requires ad_role_id and ad_org_id not to be 0, thus disallowing it to login.
|
|
|
(0002674)
|
jpabloae
|
2007-11-16 12:42
(edited on: 2008-06-12 09:23) |
|
Logged In: YES
user_id=1603191
Originator: YES
1) is reproduceable in 2.35 but not in trunk.
2) Patch attached.
File Added: adrole.diff |
|
|
(0002675)
|
jpabloae
|
2007-12-03 11:35
(edited on: 2008-06-12 09:23) |
|
Logged In: YES
user_id=1603191
Originator: YES
As a side effect it disallows new admins to log in. Solved by taking the las organization list of their orglist. |
|