diff --git a/addressbook/inc/class.uiaddressbook.inc.php b/addressbook/inc/class.uiaddressbook.inc.php index a6739e85e7..68f2aa3fc3 100644 --- a/addressbook/inc/class.uiaddressbook.inc.php +++ b/addressbook/inc/class.uiaddressbook.inc.php @@ -999,11 +999,7 @@ $data = $coldata; } } - elseif($column == 'label' && $coldata) - { - $data .= $this->contacts->formatted_address($fields[0]['id'],'',False); - } - elseif($column == 'url' && $coldata) + elseif ($column == 'url' && $coldata) { $ref = ''; $data = $coldata . ''; @@ -1020,6 +1016,11 @@ } $data = $coldata.''; } + elseif ($column == 'bday') + { + list($month,$day,$year) = explode('/',$coldata); + $data = $GLOBALS['phpgw']->common->dateformatorder($year,$month,$day,True); + } else { /* But these do not */