diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-04-10 21:53:36 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-04-10 21:53:36 +0200 |
commit | 2dfa02a34647010d26efe61598ff800c94b9c0d3 (patch) | |
tree | 685897a1979d27b655f984bd870b687fb24f0edb /apps/contacts/templates | |
parent | 3f6e971571825dd66650348ef84b4e57d4cd15b8 (diff) | |
download | nextcloud-server-2dfa02a34647010d26efe61598ff800c94b9c0d3.tar.gz nextcloud-server-2dfa02a34647010d26efe61598ff800c94b9c0d3.zip |
Contacts: fix function names to coding standard
Diffstat (limited to 'apps/contacts/templates')
-rw-r--r-- | apps/contacts/templates/part.contact.php | 2 | ||||
-rw-r--r-- | apps/contacts/templates/part.no_contacts.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/contacts/templates/part.contact.php b/apps/contacts/templates/part.contact.php index 03d2fad8530..ff1f081c4d4 100644 --- a/apps/contacts/templates/part.contact.php +++ b/apps/contacts/templates/part.contact.php @@ -17,7 +17,7 @@ $id = isset($_['id']) ? $_['id'] : ''; <li><a data-type="CATEGORIES"><?php echo $l->t('Categories'); ?></a></li> </ul> </div> - <img onclick="Contacts.UI.Card.do_export();" class="svg action" id="contacts_downloadcard" src="<?php echo image_path('', 'actions/download.svg'); ?>" title="<?php echo $l->t('Download contact');?>" /> + <img onclick="Contacts.UI.Card.doExport();" class="svg action" id="contacts_downloadcard" src="<?php echo image_path('', 'actions/download.svg'); ?>" title="<?php echo $l->t('Download contact');?>" /> <img class="svg action" id="contacts_deletecard" src="<?php echo image_path('', 'actions/delete.svg'); ?>" title="<?php echo $l->t('Delete contact');?>" /> </div> diff --git a/apps/contacts/templates/part.no_contacts.php b/apps/contacts/templates/part.no_contacts.php index 89b7575293f..7024a142aec 100644 --- a/apps/contacts/templates/part.no_contacts.php +++ b/apps/contacts/templates/part.no_contacts.php @@ -1,7 +1,7 @@ <div id="firstrun"> <?php echo $l->t('You have no contacts in your list.') ?> <div id="selections"> - <input type="button" value="<?php echo $l->t('Import contacts') ?>" onclick="Contacts.UI.Addressbooks.do_import()" /> + <input type="button" value="<?php echo $l->t('Import contacts') ?>" onclick="Contacts.UI.Addressbooks.doImport()" /> <input type="button" value="<?php echo $l->t('Add contact') ?>" onclick="Contacts.UI.Card.editNew()" /> <input type="button" value="<?php echo $l->t('Edit addressbooks') ?>" onclick="Contacts.UI.Addressbooks.overview()" /> </div> |