Explorar el Código

Merge pull request #4956 from owncloud/fix_not_displaying_emptycontent

Fix not displaying "Upload something!" message
tags/v6.0.0alpha2
Thomas Müller hace 10 años
padre
commit
bc1c6039b7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      apps/files/templates/index.php

+ 1
- 1
apps/files/templates/index.php Ver fichero

@@ -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>


Cargando…
Cancelar
Guardar