diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-02-27 21:37:14 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-02-27 21:37:14 +0100 |
commit | 221ecf63ab92cfbdfe2204dfccbb90ff68e09426 (patch) | |
tree | 4c7bb06b15430f4d1954f25d63fc72b7612d778e /apps/files_sharing/templates/authenticate.php | |
parent | 236507a19fe4d541c931944603cd38ec823cb3af (diff) | |
download | nextcloud-server-221ecf63ab92cfbdfe2204dfccbb90ff68e09426.tar.gz nextcloud-server-221ecf63ab92cfbdfe2204dfccbb90ff68e09426.zip |
[files_sharing] From echo to p
Diffstat (limited to 'apps/files_sharing/templates/authenticate.php')
-rw-r--r-- | apps/files_sharing/templates/authenticate.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index 6bce6857ac8..b6ef82da6f0 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -1,9 +1,9 @@ -<form action="<?php echo $_['URL']; ?>" method="post"> +<form action="<?php p($_['URL']); ?>" method="post"> <fieldset> <p class="infield"> - <label for="password" class="infield"><?php echo $l->t('Password'); ?></label> + <label for="password" class="infield"><?php p($l->t('Password')); ?></label> <input type="password" name="password" id="password" value="" autofocus /> - <input type="submit" value="<?php echo $l->t('Submit'); ?>" /> + <input type="submit" value="<?php p($l->t('Submit')); ?>" /> </p> </fieldset> </form>
\ No newline at end of file |