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

github.com/nextcloud/apps.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 20:35:22 +0400
committerLukas Reschke <lukas@statuscode.ch>2013-02-28 20:35:22 +0400
commitfba360afd840bdb3585b1803f62d6d44f3d8552c (patch)
treedea4579d0863a90522d1dab2ff00cbda892bfc37 /user_oauth
parent31617a6097b9149ca4105c57b21c3f28398c9e07 (diff)
Replace echo with p
Diffstat (limited to 'user_oauth')
-rw-r--r--user_oauth/templates/settings.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_oauth/templates/settings.php b/user_oauth/templates/settings.php
index 61cf1bd84..433ae613a 100644
--- a/user_oauth/templates/settings.php
+++ b/user_oauth/templates/settings.php
@@ -1,7 +1,7 @@
<form id="user_oauth">
<fieldset class="personalblock">
<strong>OAuth</strong><br />
- <input type="text" name="tokenInfoEndpoint" id="tokenInfoEndpoint" value="<?php echo $_['tokenInfoEndpoint']; ?>" placeholder="<?php p($l->t('Token Info Endpoint'));?>" />
+ <input type="text" name="tokenInfoEndpoint" id="tokenInfoEndpoint" value="<?php p($_['tokenInfoEndpoint']); ?>" placeholder="<?php p($l->t('Token Info Endpoint'));?>" />
<br />
<span class="msg">Provide the OAuth Authorization Server Token Info Endpoint here.</span>
</fieldset>