mirror of
https://github.com/humhub/humhub.git
synced 2025-01-16 21:58:17 +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`
|
||||
- Fix #6099: Empty buttons in GlobalConfirmModal footer
|
||||
- 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)
|
||||
------------------------------
|
||||
|
@ -55,7 +55,10 @@ use yii\widgets\ActiveForm;
|
||||
'columns' => [
|
||||
['class' => ImageColumn::class],
|
||||
['class' => DisplayNameColumn::class],
|
||||
'email',
|
||||
[
|
||||
'attribute' => 'email',
|
||||
'format' => 'email',
|
||||
],
|
||||
[
|
||||
'attribute' => 'last_login',
|
||||
'label' => Yii::t('AdminModule.user', 'Last login'),
|
||||
|
@ -53,7 +53,10 @@ AdminPendingRegistrationsAsset::register($this);
|
||||
},
|
||||
'contentOptions' => ['style' => 'width:auto; white-space: normal;'],
|
||||
],
|
||||
'email',
|
||||
[
|
||||
'attribute' => 'email',
|
||||
'format' => 'email',
|
||||
],
|
||||
'originator.username',
|
||||
[
|
||||
'attribute' => 'language',
|
||||
|
Loading…
x
Reference in New Issue
Block a user