mirror of
https://github.com/humhub/humhub.git
synced 2025-01-16 21:58:17 +01:00
This commit is contained in:
parent
df64d6de4f
commit
73181e1333
@ -5,6 +5,7 @@ HumHub Changelog
|
||||
----------------------
|
||||
- Fix #5822: Fix content width in mobile view
|
||||
- Fix #5825: Fix format date to mysql on date stream filter
|
||||
- Fix #5832: Exception in file open dialog when last update user no longer exists
|
||||
- Fix #5814: Fix numerated lists in mail summary content
|
||||
- Fix #5830: Fix cron job of search index rebuilding
|
||||
|
||||
|
@ -33,7 +33,7 @@ use humhub\modules\file\widgets\FileHandlerButtonDropdown;
|
||||
<p style="line-height:20px">
|
||||
<strong><?= Yii::t('FileModule.base', 'Size:'); ?></strong> <?= Yii::$app->formatter->asShortSize($file->size, 1); ?><br />
|
||||
<strong><?= Yii::t('FileModule.base', 'Created by:'); ?></strong> <?= Html::encode($file->createdBy->displayName); ?> (<?= Yii::$app->formatter->asDatetime($file->created_at, 'short'); ?>)<br />
|
||||
<?php if (!empty($file->updated_at) && $file->updated_at != $file->created_at) : ?>
|
||||
<?php if (!empty($file->updatedBy) && $file->updated_at != $file->created_at) : ?>
|
||||
<strong><?= Yii::t('FileModule.base', 'Last update by:') ?></strong> <?= Html::encode($file->updatedBy->displayName); ?> (<?= Yii::$app->formatter->asDatetime($file->updated_at, 'short'); ?>)<br/>
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
@ -53,4 +53,4 @@ use humhub\modules\file\widgets\FileHandlerButtonDropdown;
|
||||
<?= ModalButton::cancel(Yii::t('base', 'Close'))->right() ?>
|
||||
</div>
|
||||
|
||||
<?php ModalDialog::end(); ?>
|
||||
<?php ModalDialog::end(); ?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user