1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-19 08:52:22 +01:00

Merge pull request #934 from owncloud/default_to_home

default should always be home
This commit is contained in:
Thomas Müller 2015-06-26 17:31:18 +02:00
commit 5e37672d2e

View File

@ -160,8 +160,8 @@ Class Properties {
case 'ADR':
case 'IMPP':
return array(
'WORK' => (string)$l->t('Work'),
'HOME' => (string)$l->t('Home'),
'WORK' => (string)$l->t('Work'),
'OTHER' => (string)$l->t('Other'),
);
case 'TEL':
@ -179,8 +179,8 @@ Class Properties {
);
case 'EMAIL':
return array(
'WORK' => (string)$l->t('Work'),
'HOME' => (string)$l->t('Home'),
'WORK' => (string)$l->t('Work'),
'INTERNET' => (string)$l->t('Internet'),
'OTHER' => (string)$l->t('Other'),
);