diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-04-22 02:09:13 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-04-22 02:09:13 +0200 |
commit | 80ddf37bb76743672e4b5d754cb659b30cad2f71 (patch) | |
tree | 4fe8c3917ac6d1fb0b6f64bb22f366279bdb4692 /apps | |
parent | 651de1e5884dd6ce43fd9d1cfb37a2bb4fb5728e (diff) | |
download | nextcloud-server-80ddf37bb76743672e4b5d754cb659b30cad2f71.tar.gz nextcloud-server-80ddf37bb76743672e4b5d754cb659b30cad2f71.zip |
Missing double quote.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contacts/templates/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/templates/index.php b/apps/contacts/templates/index.php index 2219d609d2e..256d10afc07 100644 --- a/apps/contacts/templates/index.php +++ b/apps/contacts/templates/index.php @@ -16,7 +16,7 @@ </div> <div id="bottomcontrols"> <form> - <img class="svg" id="contacts_newcontact" src="img/contact-new.svg" alt="<?php echo $l->t('Add Contact'); ?> title="<?php echo $l->t('Add Contact'); ?>" /> + <img class="svg" id="contacts_newcontact" src="img/contact-new.svg" alt="<?php echo $l->t('Add Contact'); ?>" title="<?php echo $l->t('Add Contact'); ?>" /> <img class="svg" id="chooseaddressbook" src="../../core/img/actions/settings.svg" alt="<?php echo $l->t('Addressbooks'); ?>" title="<?php echo $l->t('Addressbooks'); ?>" /> </form> </div> |