diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-23 13:09:47 -0700 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-23 13:09:47 -0700 |
commit | bc1c6039b798c9460b8bbb8ef24b0f2d12229810 (patch) | |
tree | ed542f7059659c6291666f8ce1f858014cdf48bd | |
parent | 5d671a84b22079f12a993c02993db39cef008230 (diff) | |
parent | d7409547aa0c6fe23cb408e266a09392b4752a72 (diff) | |
download | nextcloud-server-bc1c6039b798c9460b8bbb8ef24b0f2d12229810.tar.gz nextcloud-server-bc1c6039b798c9460b8bbb8ef24b0f2d12229810.zip |
Merge pull request #4956 from owncloud/fix_not_displaying_emptycontent
Fix not displaying "Upload something!" message
-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 bd991c3fcb0..96a80738989 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -47,7 +47,7 @@ <input type="hidden" name="permissions" value="<?php p($_['permissions']); ?>" id="permissions"> </div> -<div id="emptycontent" <?php if (!isset($_['files']) or !$_['isCreatable'] or count($_['files']) > 0 or !$_['ajaxLoad']):?>class="hidden"<?php endif; ?>><?php p($l->t('Nothing in here. Upload something!'))?></div> +<div id="emptycontent" <?php if (!isset($_['files']) or !$_['isCreatable'] or count($_['files']) > 0 or $_['ajaxLoad']):?>class="hidden"<?php endif; ?>><?php p($l->t('Nothing in here. Upload something!'))?></div> <input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>"></input> |