thomascube
2010-10-06 cb8ebfcbf8cf72f1aeb44b4fcdd62e071cc00368
program/include/rcube_vcard.php
@@ -4,8 +4,8 @@
 +-----------------------------------------------------------------------+
 | program/include/rcube_vcard.php                                       |
 |                                                                       |
 | This file is part of the RoundCube Webmail client                     |
 | Copyright (C) 2008-2009, RoundCube Dev. - Switzerland                 |
 | This file is part of the Roundcube Webmail client                     |
 | Copyright (C) 2008-2009, Roundcube Dev. - Switzerland                 |
 | Licensed under the GNU GPL                                            |
 |                                                                       |
 | PURPOSE:                                                              |
@@ -218,7 +218,9 @@
      if ($in_vcard_block && !empty($line))
        $vcard_block .= $line . "\n";
      if (trim($line) == 'END:VCARD') {
      $line = trim($line);
      if (preg_match('/^END:VCARD$/i', $line)) {
        // parse vcard
        $obj = new rcube_vcard(self::cleanup($vcard_block), $charset);
        if (!empty($obj->displayname))
@@ -226,7 +228,7 @@
        $in_vcard_block = false;
      }
      else if (trim($line) == 'BEGIN:VCARD') {
      else if (preg_match('/^BEGIN:VCARD$/i', $line)) {
        $vcard_block = $line . "\n";
        $in_vcard_block = true;
      }