Ignore:
Timestamp:
May 12, 2011 4:18:19 PM (2 years ago)
Author:
thomasb
Message:

Improve display name composition when saving contacts (#1487143), with plugin-support; allow empty names in sql address book, fall back to e-mail address in listing and vcard export

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/steps/addressbook/export.inc

    r4657 r4752  
    66 |                                                                       | 
    77 | This file is part of the Roundcube Webmail client                     | 
    8  | Copyright (C) 2008-2009, The Roundcube Dev Team                       | 
     8 | Copyright (C) 2008-2011, The Roundcube Dev Team                       | 
    99 | Licensed under the GNU GPL                                            | 
    1010 |                                                                       | 
     
    3232while ($result && ($row = $result->next())) { 
    3333  // we already have a vcard record 
    34   if ($row['vcard']) { 
     34  if ($row['vcard'] && $row['name']) { 
    3535    echo rcube_vcard::rfc2425_fold($row['vcard']) . "\n"; 
    3636  } 
Note: See TracChangeset for help on using the changeset viewer.