addressbook/inc/class.addressbook_bo.inc.php 1 location
|
@@ 2103-2107 (lines=5) @@
|
| 2100 |
|
$cat_id_list = array_merge($cat_id_list, $old_cats_preserve); |
| 2101 |
|
} |
| 2102 |
|
|
| 2103 |
|
if (count($cat_id_list) > 1) |
| 2104 |
|
{ |
| 2105 |
|
$cat_id_list = array_unique($cat_id_list); |
| 2106 |
|
sort($cat_id_list, SORT_NUMERIC); |
| 2107 |
|
} |
| 2108 |
|
|
| 2109 |
|
//error_log(__METHOD__."(".array2string($catname_list).", $contact_id) returning ".array2string($cat_id_list)); |
| 2110 |
|
return $cat_id_list; |
calendar/inc/class.calendar_boupdate.inc.php 1 location
|
@@ 2136-2140 (lines=5) @@
|
| 2133 |
|
$cat_id_list = array_merge($cat_id_list, $old_cats_preserve); |
| 2134 |
|
} |
| 2135 |
|
|
| 2136 |
|
if (count($cat_id_list) > 1) |
| 2137 |
|
{ |
| 2138 |
|
$cat_id_list = array_unique($cat_id_list); |
| 2139 |
|
sort($cat_id_list, SORT_NUMERIC); |
| 2140 |
|
} |
| 2141 |
|
|
| 2142 |
|
return $cat_id_list; |
| 2143 |
|
} |