diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-06-28 01:51:42 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-06-28 01:51:42 +0200 |
commit | e04a605b9b5dab2e7e79364dcc0eaee35721ee8b (patch) | |
tree | 02d8d097a833012649293cd54d072cc8dbced1ca /apps/contacts | |
parent | a48aba316ebd2135647ecf6062383053331f5b8f (diff) | |
download | nextcloud-server-e04a605b9b5dab2e7e79364dcc0eaee35721ee8b.tar.gz nextcloud-server-e04a605b9b5dab2e7e79364dcc0eaee35721ee8b.zip |
No need for this anymore.
Diffstat (limited to 'apps/contacts')
-rw-r--r-- | apps/contacts/templates/part.contacts.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/apps/contacts/templates/part.contacts.php b/apps/contacts/templates/part.contacts.php deleted file mode 100644 index c33c5832e82..00000000000 --- a/apps/contacts/templates/part.contacts.php +++ /dev/null @@ -1,10 +0,0 @@ -<?php -foreach($_['books'] as $id => $addressbook) { - echo '<h3 class="addressbook" data-id="'.$id.'">'.$addressbook['displayname'].'</h3>'; - echo '<ul class="contacts hidden" data-id="'.$id.'">'; - foreach($addressbook['contacts'] as $contact) { - echo '<li role="button" data-bookid="'.$contact['addressbookid'].'" data-id="'.$contact['id'].'"><a href="'.link_to('contacts','index.php').'&id='.$contact['id'].'" style="background: url('.link_to('contacts','thumbnail.php').'?id='.$contact['id'].') no-repeat scroll 0 0 transparent;">'.$contact['displayname'].'</a></li>'; - } - echo '</ul>'; -} -?> |