mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
sql_search works again
This commit is contained in:
parent
65f1101563
commit
ae028712f2
@ -62,16 +62,16 @@
|
||||
// This is used for searching the access fields
|
||||
function sql_search($table,$owner=0)
|
||||
{
|
||||
global $phpgw_info;
|
||||
global $phpgw, $phpgw_info;
|
||||
|
||||
$s = "";
|
||||
if (!$owner) {
|
||||
$owner = $phpgw_info["user"]["account_id"];
|
||||
}
|
||||
$groups = $this->read_groups(intval($owner));
|
||||
$groups = $phpgw->accounts->memberships(intval($owner));
|
||||
if (gettype($groups) == "array") {
|
||||
while ($group = each($groups)) {
|
||||
$s .= " or $table like '%," . $group[0] . ",%'";
|
||||
$s .= " or $table like '%," . $group[2] . ",%'";
|
||||
}
|
||||
}
|
||||
return $s;
|
||||
|
Loading…
Reference in New Issue
Block a user