summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2016-10-25 22:04:43 +0200
committerGitHub <noreply@github.com>2016-10-25 22:04:43 +0200
commit1b6ba5ad322cb3d6e2139393798d243f1d4cc68a (patch)
treef20ce94d69912234500b8f2646d77212aaf4c1f3
parentd89c1a49c145ba13524676a693b5ca0118d0ab94 (diff)
parente456df14abc081cd770588df8a30c53c4e438599 (diff)
downloadnextcloud-server-1b6ba5ad322cb3d6e2139393798d243f1d4cc68a.tar.gz
nextcloud-server-1b6ba5ad322cb3d6e2139393798d243f1d4cc68a.zip
Merge pull request #1911 from nextcloud/downstream-26477
Fix malformed attribute in files app
-rw-r--r--apps/files/templates/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php
index 42ce941a4a5..92345d3063e 100644
--- a/apps/files/templates/index.php
+++ b/apps/files/templates/index.php
@@ -14,7 +14,7 @@
<input type="hidden" name="usedSpacePercent" id="usedSpacePercent" value="<?php p($_['usedSpacePercent']); ?>" />
<input type="hidden" name="owner" id="owner" value="<?php p($_['owner']); ?>" />
<input type="hidden" name="ownerDisplayName" id="ownerDisplayName" value="<?php p($_['ownerDisplayName']); ?>" />
-<input type="hidden" name="fileNotFound" id="fileNotFound" value="<?php p($_['fileNotFound']); ?>"" />
+<input type="hidden" name="fileNotFound" id="fileNotFound" value="<?php p($_['fileNotFound']); ?>" />
<?php if (!$_['isPublic']) :?>
<input type="hidden" name="mailNotificationEnabled" id="mailNotificationEnabled" value="<?php p($_['mailNotificationEnabled']) ?>" />
<input type="hidden" name="mailPublicNotificationEnabled" id="mailPublicNotificationEnabled" value="<?php p($_['mailPublicNotificationEnabled']) ?>" />