Thomas B.
2013-10-21 e1ae18311aed1c40a3085bffa3b35d0eef15242b
Merge pull request #142 from Takika/patch-2

Add contact_listname hook to handle special name order
1 files modified
6 ■■■■ changed files
program/lib/Roundcube/rcube_addressbook.php 6 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_addressbook.php
@@ -532,8 +532,12 @@
            $fn = join(' ', array($contact['surname'], $contact['firstname'], $contact['middlename']));
        else if ($compose_mode == 1)
            $fn = join(' ', array($contact['firstname'], $contact['middlename'], $contact['surname']));
        else
        else if ($compose_mode == 0)
            $fn = !empty($contact['name']) ? $contact['name'] : join(' ', array($contact['prefix'], $contact['firstname'], $contact['middlename'], $contact['surname'], $contact['suffix']));
        else {
            $plugin = rcube::get_instance()->plugins->exec_hook('contact_listname', array('contact' => $contact));
            $fn     = $plugin['fn'];
        }
        $fn = trim($fn, ', ');