Fixed empty content logic

- Remove obsolete code that used another approach for hiding emptycontent
- Fixed logic for the showing of the empty content message
This commit is contained in:
Vincent Petry 2013-10-21 22:18:10 +02:00
parent 732e7db319
commit d1c27e08e5
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ if ($needUpgrade) {
$isCreatable = \OC\Files\Filesystem::isCreatable($dir . '/');
$fileHeader = (!isset($files) or count($files) > 0);
$emptyContent = $isCreatable or $fileHeader or $ajaxLoad;
$emptyContent = ($isCreatable and !$fileHeader) or $ajaxLoad;
OCP\Util::addscript('files', 'fileactions');
OCP\Util::addscript('files', 'files');

View File

@ -1,6 +1,6 @@
<div id="controls">
<?php print_unescaped($_['breadcrumb']); ?>
<div class="actions creatable <?php if (!$_['isCreatable']):?>hidden<?php endif; ?> <?php if (isset($_['files']) and count($_['files'])==0):?>emptycontent<?php endif; ?>">
<div class="actions creatable <?php if (!$_['isCreatable']):?>hidden<?php endif; ?>">
<div id="new" class="button">
<a><?php p($l->t('New'));?></a>
<ul>