aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/templates/index.php
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2016-04-12 17:10:09 +0200
committerChristoph Wurst <christoph@owncloud.com>2016-04-19 16:08:56 +0200
commit6c5696d3a84ff71fc5ddb53b490bbc77f5c119f5 (patch)
tree03aec364e0e7f342ab822b2896c8dde6c40ea480 /apps/files/templates/index.php
parentf8c55beaae9dc0e5fefb4aa8f78d3d71ea580d59 (diff)
downloadnextcloud-server-6c5696d3a84ff71fc5ddb53b490bbc77f5c119f5.tar.gz
nextcloud-server-6c5696d3a84ff71fc5ddb53b490bbc77f5c119f5.zip
filter hidden files on the web interface
add checkbox to toggle show/hide hidden files persist show hidden setting fix settings menu layout test ApiController::showHiddenFiles don't show hidden files by default Store config in Backbone model and inject it into FileList Filter files only temporarily when rending the file list Fix file rename validation
Diffstat (limited to 'apps/files/templates/index.php')
-rw-r--r--apps/files/templates/index.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php
index db464ad2eca..7281edd3aec 100644
--- a/apps/files/templates/index.php
+++ b/apps/files/templates/index.php
@@ -20,4 +20,5 @@
<input type="hidden" name="allowShareWithLink" id="allowShareWithLink" value="<?php p($_['allowShareWithLink']) ?>" />
<input type="hidden" name="defaultFileSorting" id="defaultFileSorting" value="<?php p($_['defaultFileSorting']) ?>" />
<input type="hidden" name="defaultFileSortingDirection" id="defaultFileSortingDirection" value="<?php p($_['defaultFileSortingDirection']) ?>" />
+<input type="hidden" name="showHiddenFiles" id="showHiddenFiles" value="<?php p($_['showHiddenFiles']); ?>" />
<?php endif;