diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-10-07 22:42:50 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-10-07 22:42:50 +0200 |
commit | 46b8703b715230122a14548a229fc648077ca0fe (patch) | |
tree | 24f39b9c964c251328cd3d11dd310e2bd042da45 /apps/contacts | |
parent | f95e8c62c90d2a97d6f50ff7b1792f9d700548f8 (diff) | |
download | nextcloud-server-46b8703b715230122a14548a229fc648077ca0fe.tar.gz nextcloud-server-46b8703b715230122a14548a229fc648077ca0fe.zip |
Display contact name without label and in bold
Diffstat (limited to 'apps/contacts')
-rw-r--r-- | apps/contacts/templates/part.property.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/contacts/templates/part.property.php b/apps/contacts/templates/part.property.php index 3469f53b0da..31fb187a0d3 100644 --- a/apps/contacts/templates/part.property.php +++ b/apps/contacts/templates/part.property.php @@ -1,8 +1,8 @@ <tr class="contacts_details_property" data-checksum="<?php echo $_['property']['checksum']; ?>"> <?php if($_['property']['name'] == 'FN'): ?> - <td class="contacts_details_left"><?php echo $l->t('Name'); ?></td> + <td class="contacts_details_left"></td> <td class="contacts_details_right"> - <?php echo $_['property']['value']; ?> + <strong><?php echo $_['property']['value']; ?></strong> <span style="display:none;" data-use="edit"><img class="svg action" src="<?php echo image_path('', 'actions/rename.svg'); ?>" /></span> </td> <?php elseif($_['property']['name'] == 'BDAY'): ?> |