Skip to content

Commit

Permalink
drop ereg dep for php 7 in Kolab_Format
Browse files Browse the repository at this point in the history
  • Loading branch information
remicollet committed Jun 27, 2016
1 parent 43609f3 commit a7a553f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ protected function _load(&$children)

$result = array();
foreach ($object['annotation'] as $annotation) {
list($key, $value) = split('#', $annotation, 2);
list($key, $value) = explode('#', $annotation, 2);
$result[base64_decode($key)] = base64_decode($value);
}

Expand Down

0 comments on commit a7a553f

Please sign in to comment.