mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
fixing issue: failed add to organisation from org-view, when colon in org_unit/org_location/organisation
This commit is contained in:
parent
ff82712ac3
commit
4aa739c6c8
@ -828,7 +828,7 @@ class addressbook_bo extends addressbook_so
|
||||
$org = array();
|
||||
foreach(explode('|||',$org_id) as $part)
|
||||
{
|
||||
list($name,$value) = explode(':',$part);
|
||||
list($name,$value) = explode(':',$part,2);
|
||||
$org[$name] = $value;
|
||||
}
|
||||
$csvs = array('cat_id'); // fields with comma-separated-values
|
||||
|
Loading…
Reference in New Issue
Block a user