diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2016-10-25 22:04:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-25 22:04:43 +0200 |
commit | 1b6ba5ad322cb3d6e2139393798d243f1d4cc68a (patch) | |
tree | f20ce94d69912234500b8f2646d77212aaf4c1f3 | |
parent | d89c1a49c145ba13524676a693b5ca0118d0ab94 (diff) | |
parent | e456df14abc081cd770588df8a30c53c4e438599 (diff) | |
download | nextcloud-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.php | 2 |
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']) ?>" /> |