aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Storage
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-02-22 21:45:00 -0800
committerzotlabs <mike@macgirvin.com>2018-02-22 21:45:00 -0800
commit5456ee7f655b854c37cddf0479f0d8757802ca86 (patch)
tree6acab9aeed07641986b6a3c77ede3374c22fccc1 /Zotlabs/Storage
parent277da4363194bd652918b100b93fdb0a85f9f689 (diff)
downloadvolse-hubzilla-5456ee7f655b854c37cddf0479f0d8757802ca86.tar.gz
volse-hubzilla-5456ee7f655b854c37cddf0479f0d8757802ca86.tar.bz2
volse-hubzilla-5456ee7f655b854c37cddf0479f0d8757802ca86.zip
cloud 'view-as-tiles' toggle wasn't available (at all) for guests and they are the most likely to prefer that view. Fix that and make tiles the default view for guests, and list mode the default view for the channel owner.
Diffstat (limited to 'Zotlabs/Storage')
-rw-r--r--Zotlabs/Storage/Browser.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/Zotlabs/Storage/Browser.php b/Zotlabs/Storage/Browser.php
index c21b68971..f1c95802b 100644
--- a/Zotlabs/Storage/Browser.php
+++ b/Zotlabs/Storage/Browser.php
@@ -264,7 +264,10 @@ class Browser extends DAV\Browser\Plugin {
$this->server->emit('onHTMLActionsPanel', array($parent, &$output, $path));
}
-
+ $deftiles = (($is_owner) ? 0 : 1);
+ $tiles = ((array_key_exists('cloud_tiles',$_SESSION)) ? intval($_SESSION['cloud_tiles']) : $deftiles);
+ $_SESSION['cloud_tiles'] = $tiles;
+
$html .= replace_macros(get_markup_template('cloud.tpl'), array(
'$header' => t('Files') . ": " . $this->escapeHTML($path) . "/",
'$total' => t('Total'),