Show uploaded date under thumbnails when there is no user linked to a file

This commit is contained in:
Frederic Guillot 2017-02-05 11:27:34 -05:00
parent 40cd74aa95
commit a2e2ab8997
1 changed files with 5 additions and 1 deletions

View File

@ -33,7 +33,11 @@
<span class="tooltip" title='<?= t('Uploaded: %s', $this->dt->datetime($file['date'])).'<br>'.t('Size: %s', $this->text->bytes($file['size'])) ?>'>
<i class="fa fa-info-circle"></i>
</span>
<?= t('Uploaded by %s', $file['user_name'] ?: $file['username']) ?>
<?php if (! empty($file['user_id'])): ?>
<?= t('Uploaded by %s', $file['user_name'] ?: $file['username']) ?>
<?php else: ?>
<?= t('Uploaded: %s', $this->dt->datetime($file['date'])) ?>
<?php endif ?>
</div>
</div>
</div>