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
path: root/search
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 /search
parent31617a6097b9149ca4105c57b21c3f28398c9e07 (diff)
Replace echo with p
Diffstat (limited to 'search')
-rw-r--r--search/templates/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/search/templates/index.php b/search/templates/index.php
index 2d89b717d..713e8d0a5 100644
--- a/search/templates/index.php
+++ b/search/templates/index.php
@@ -3,7 +3,7 @@
<!-- search form -->
<div id="controls">
<form id="search-form" action="<?php print_unescaped(OCP\Util::linkTo('search', 'index.php')); ?>" method="get">
- <input type="text" name="query" id="search_query" value="<?php echo $_['breadcrumb']; ?>">
+ <input type="text" name="query" id="search_query" value="<?php p($_['breadcrumb']); ?>">
<button class="button search_button">Search</button>
</form>
</div>
@@ -40,4 +40,4 @@
<div id="editor"></div>
<!-- config hints for javascript -->
-<input type="hidden" name="allowZipDownload" id="allowZipDownload" value="<?php echo $_['allowZipDownload']; ?>" />
+<input type="hidden" name="allowZipDownload" id="allowZipDownload" value="<?php p($_['allowZipDownload']); ?>" />