Skip to content

Commit

Permalink
Fix for email-contact
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron Barack committed Sep 30, 2019
1 parent 4f63ed0 commit db640e5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bmlt-meeting-list.php
Original file line number Diff line number Diff line change
Expand Up @@ -1608,9 +1608,10 @@ function write_detailed_formats($formats, $page) {
}
private function parse_field($text) {
if ($text!='') {
$exploded = explode("#@-@#", $text);
if (count($exploded) > 1) {
$text = $exploded[1];
$exploded = explode("#@-@#", $text);
$knt = count($exploded);
if ($knt > 1) {
$text = $exploded[$knt-1];
}
}
return $text;
Expand Down

0 comments on commit db640e5

Please sign in to comment.