summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-08-09 22:17:52 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2012-08-24 14:58:47 +0200
commit3644517b015bdebfbb22af6f912e87c05fd4251c (patch)
treebe5c1924f93d5bfc2470ff4fbcd696a55805ecb2
parent4f7e4c20d27b3a611a5a5939a98086c10a873dbf (diff)
downloadnextcloud-server-3644517b015bdebfbb22af6f912e87c05fd4251c.tar.gz
nextcloud-server-3644517b015bdebfbb22af6f912e87c05fd4251c.zip
Missed an "echo"
-rw-r--r--apps/gallery/sharing.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gallery/sharing.php b/apps/gallery/sharing.php
index a9683c02067..af3e553e454 100644
--- a/apps/gallery/sharing.php
+++ b/apps/gallery/sharing.php
@@ -37,7 +37,7 @@ OCP\App::checkAppEnabled('gallery');
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="js/sharing.js" type="text/javascript"></script>
<script>
- var TOKEN = '<?php htmlentities(echo $_GET['token']); ?>';
+ var TOKEN = '<?php echo htmlentities($_GET['token']); ?>';
</script>
</head>
<body>