Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/firstrunwizard.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2013-02-28 21:26:55 +0400
committerLukas Reschke <lukas@statuscode.ch>2013-02-28 21:26:55 +0400
commit5cf9e6f467c67de72bcadaeee66ecc674ec13a96 (patch)
tree9d4271e69200b7f82bb1350c22b5fb2ceee8d2ee /templates
parent9ee31248d15092539e0426485bc5b012fa8cad28 (diff)
Replace echo with p
Diffstat (limited to 'templates')
-rw-r--r--templates/wizard.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/templates/wizard.php b/templates/wizard.php
index 48f259f4..768df6e3 100644
--- a/templates/wizard.php
+++ b/templates/wizard.php
@@ -1,7 +1,7 @@
<div id="firstrunwizard">
<a id="closeWizard" class="close">
- <img class="svg" src="<?php echo OCP\Util::imagePath('core', 'actions/delete.svg'); ?>">
+ <img class="svg" src="<?php print_unescaped(OCP\Util::imagePath('core', 'actions/delete.svg')); ?>">
</a>
<h1><?php p($l->t('Welcome to ownCloud'));?></h1>
@@ -10,29 +10,29 @@
<h2><?php p($l->t('Get the apps to sync your files'));?></h2>
<a href="<?php p($_['clients']['desktop']); ?>">
- <img src="<?php echo OCP\Util::imagePath('core', 'desktopapp.png'); ?>" />
+ <img src="<?php print_unescaped(OCP\Util::imagePath('core', 'desktopapp.png')); ?>" />
</a>
<a href="<?php p($_['clients']['android']); ?>">
- <img src="<?php echo OCP\Util::imagePath('core', 'googleplay.png'); ?>" />
+ <img src="<?php print_unescaped(OCP\Util::imagePath('core', 'googleplay.png')); ?>" />
</a>
<a href="<?php p($_['clients']['ios']); ?>">
- <img src="<?php echo OCP\Util::imagePath('core', 'appstore.png'); ?>" />
+ <img src="<?php print_unescaped(OCP\Util::imagePath('core', 'appstore.png')); ?>" />
</a>
<h2><?php p($l->t('Connect your desktop apps to ownCloud'));?></h2>
<a class="button" href="http://doc.owncloud.org/server/5.0/user_manual/calendars.html#synchronising-calendars-with-caldav">
- <img class="appsmall appsmall-calendar svg" src="<?php echo OCP\Util::imagePath('core', 'places/calendar-dark.svg'); ?>" /> <?php p($l->t('Connect your Calendar'));?>
+ <img class="appsmall appsmall-calendar svg" src="<?php print_unescaped(OCP\Util::imagePath('core', 'places/calendar-dark.svg')); ?>" /> <?php p($l->t('Connect your Calendar'));?>
</a>
<a class="button" href="http://doc.owncloud.org/server/5.0/user_manual/contacts.html#keeping-your-address-book-in-sync">
- <img class="appsmall appsmall-contacts svg" src="<?php echo OCP\Util::imagePath('core', 'places/contacts-dark.svg'); ?>" /> <?php p($l->t('Connect your Contacts'));?>
+ <img class="appsmall appsmall-contacts svg" src="<?php print_unescaped(OCP\Util::imagePath('core', 'places/contacts-dark.svg')); ?>" /> <?php p($l->t('Connect your Contacts'));?>
</a>
<a class="button" href="http://doc.owncloud.org/server/5.0/user_manual/connecting_webdav.html">
- <img class="appsmall svg" src="<?php echo OCP\Util::imagePath('core', 'places/folder.svg'); ?>" /> <?php p($l->t('Access files via WebDAV'));?>
+ <img class="appsmall svg" src="<?php print_unescaped(OCP\Util::imagePath('core', 'places/folder.svg')); ?>" /> <?php p($l->t('Access files via WebDAV'));?>
</a>
-<p class="footnote"><?php p($l->t('There’s more information in the <a href="http://doc.owncloud.org/server/5.0/user_manual/">documentation</a> and on our <a href="http://owncloud.org">website</a>.')); ?><br>
-<?php p($l->t('If you like ownCloud, <a href="mailto:?subject=ownCloud&body=ownCloud is a great open software to sync and share your files. You can freely get it from http://owncloud.org">recommend it to your friends</a>!')); ?></p>
+<p class="footnote"><?php print_unescaped($l->t('There’s more information in the <a href="http://doc.owncloud.org/server/5.0/user_manual/">documentation</a> and on our <a href="http://owncloud.org">website</a>.')); ?><br>
+<?php print_unescaped($l->t('If you like ownCloud, <a href="mailto:?subject=ownCloud&body=ownCloud is a great open software to sync and share your files. You can freely get it from http://owncloud.org">recommend it to your friends</a>!')); ?></p>
</div>