mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-27 10:23:28 +01:00
* PostgreSQL/Setup/EMailAdmin: fixed Setup >> Configuration was not storing anything
caused by egw_emailadmin.ea_(user|group) is varchar (for whatever reason) and postgres never returned a default profile
This commit is contained in:
parent
19f1721839
commit
ef21cdae30
@ -287,8 +287,8 @@
|
||||
elseif ($_defaultProfile)
|
||||
{
|
||||
$where[] = "(ea_appname ='' or ea_appname is NULL)";
|
||||
$where[] = "(ea_group=0 or ea_group is NULL)";
|
||||
$where[] = "(ea_user =0 or ea_user is NULL)";
|
||||
$where[] = "(ea_group='0' or ea_group is NULL)"; // ea_group&ea_user are varchar!
|
||||
$where[] = "(ea_user ='0' or ea_user is NULL)";
|
||||
}
|
||||
elseif ($_appName)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user