mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 14:18:27 +01:00
This commit is contained in:
parent
a4edcf353b
commit
edc4e404a4
@ -6,6 +6,7 @@ HumHub Changelog (DEVELOP)
|
|||||||
- Enh #6173: Theme variables `background-color-highlight` and `background-color-highlight-soft`
|
- Enh #6173: Theme variables `background-color-highlight` and `background-color-highlight-soft`
|
||||||
- Fix #6099: Empty buttons in GlobalConfirmModal footer
|
- Fix #6099: Empty buttons in GlobalConfirmModal footer
|
||||||
- Fix #6100: Broken area reference in some modal boxes
|
- Fix #6100: Broken area reference in some modal boxes
|
||||||
|
- Enh #6171: Make email in user administration and user approval clickable
|
||||||
|
|
||||||
1.14.0-beta.1 (March 10, 2023)
|
1.14.0-beta.1 (March 10, 2023)
|
||||||
------------------------------
|
------------------------------
|
||||||
|
@ -55,7 +55,10 @@ use yii\widgets\ActiveForm;
|
|||||||
'columns' => [
|
'columns' => [
|
||||||
['class' => ImageColumn::class],
|
['class' => ImageColumn::class],
|
||||||
['class' => DisplayNameColumn::class],
|
['class' => DisplayNameColumn::class],
|
||||||
'email',
|
[
|
||||||
|
'attribute' => 'email',
|
||||||
|
'format' => 'email',
|
||||||
|
],
|
||||||
[
|
[
|
||||||
'attribute' => 'last_login',
|
'attribute' => 'last_login',
|
||||||
'label' => Yii::t('AdminModule.user', 'Last login'),
|
'label' => Yii::t('AdminModule.user', 'Last login'),
|
||||||
|
@ -53,7 +53,10 @@ AdminPendingRegistrationsAsset::register($this);
|
|||||||
},
|
},
|
||||||
'contentOptions' => ['style' => 'width:auto; white-space: normal;'],
|
'contentOptions' => ['style' => 'width:auto; white-space: normal;'],
|
||||||
],
|
],
|
||||||
'email',
|
[
|
||||||
|
'attribute' => 'email',
|
||||||
|
'format' => 'email',
|
||||||
|
],
|
||||||
'originator.username',
|
'originator.username',
|
||||||
[
|
[
|
||||||
'attribute' => 'language',
|
'attribute' => 'language',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user