Completed
Pull Request — dev (#25)
by Sarah
05:22 queued 02:46
created
views/admin/group/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
                 'label' => Yii::t('AdminModule.views_group_index', 'Members'),
33 33
                 'format' => 'raw',
34 34
                 'options' => ['style' => 'text-align:center;'],
35
-                'value' => function ($data) {
35
+                'value' => function($data) {
36 36
             return $data->getGroupUsers()->count();
37 37
         }
38 38
             ],
Please login to merge, or discard this patch.
views/admin/user/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,9 +39,9 @@
 block discarded – undo
39 39
                     'filter' => \yii\jui\DatePicker::widget([
40 40
                         'model' => $searchModel,
41 41
                         'attribute' => 'last_login',
42
-                        'options' => ['style' => 'width:100%;' , 'class' => 'form-control'],
42
+                        'options' => ['style' => 'width:100%;', 'class' => 'form-control'],
43 43
                     ]),
44
-                    'value' => function ($data) {
44
+                    'value' => function($data) {
45 45
                 return ($data->last_login == NULL) ? Yii::t('AdminModule.views_user_index', 'never') : Yii::$app->formatter->asDate($data->last_login);
46 46
             }
47 47
                 ],
Please login to merge, or discard this patch.