Completed
Pull Request — dev (#76)
by Sarah
02:56 queued 32s
created
views/admin/setting/logs.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@
 block discarded – undo
7 7
 <?php $this->beginContent('@admin/views/setting/_advancedLayout.php') ?>
8 8
 
9 9
 <p><?= Yii::t('AdminModule.views_setting_logs',
10
-	'Old logs can significantly increase the size of your database while providing little information.') ?>
10
+    'Old logs can significantly increase the size of your database while providing little information.') ?>
11 11
 </p>
12 12
 <p><?= Yii::t('AdminModule.views_setting_logs',
13
-	'Currently there are {count} records in the database dating from {dating}.',
14
-	['count' => $logsCount, 'dating' => $dating])?>
13
+    'Currently there are {count} records in the database dating from {dating}.',
14
+    ['count' => $logsCount, 'dating' => $dating])?>
15 15
 </p>
16 16
 <br>
17 17
 
Please login to merge, or discard this patch.
views/comment/comment/edit.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     <?= Html::hiddenInput('contentId', $contentId); ?>
12 12
 
13 13
     <?=
14
-	humhub\widgets\RichtextField::widget([
14
+    humhub\widgets\RichtextField::widget([
15 15
         'id' => 'comment_input_'.$comment->id,
16 16
         'placeholder' => Yii::t('CommentModule.views_edit', 'Edit your comment...'),
17 17
         'model' => $comment,
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     <div id="comment_upload_progress_<?= $comment->id ?>" style="display:none; margin:10px 0;"></div>
47 47
 
48 48
     <?=
49
-	\humhub\modules\file\widgets\FilePreview::widget([
49
+    \humhub\modules\file\widgets\FilePreview::widget([
50 50
         'id' => 'comment_upload_preview_'.$comment->id,
51 51
         'options' => ['style' => 'margin-top:10px'],
52 52
         'model' => $comment,
Please login to merge, or discard this patch.
views/user/widgets/profileHeader.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -67,10 +67,10 @@  discard block
 block discarded – undo
67 67
                             class="fa fa-cloud-upload"></i></a>
68 68
                     <a id="banner-image-upload-edit-button"
69 69
                        style="<?php
70
-                       if (!$user->getProfileBannerImage()->hasImage()) {
71
-                           echo 'display: none;';
72
-                       }
73
-                       ?>"
70
+                        if (!$user->getProfileBannerImage()->hasImage()) {
71
+                            echo 'display: none;';
72
+                        }
73
+                        ?>"
74 74
                        href="<?= Url::to(['/user/image/crop', 'userGuid' => $user->guid, 'type' => ImageController::TYPE_PROFILE_BANNER_IMAGE]); ?>"
75 75
                        class="btn btn-info btn-sm" data-target="#globalModal" data-backdrop="static"><i
76 76
                             class="fa fa-edit"></i></a>
@@ -128,10 +128,10 @@  discard block
 block discarded – undo
128 128
                             class="fa fa-cloud-upload"></i></a>
129 129
                     <a id="profile-image-upload-edit-button"
130 130
                        style="<?php
131
-                       if (!$user->getProfileImage()->hasImage()) {
132
-                           echo 'display: none;';
133
-                       }
134
-                       ?>"
131
+                        if (!$user->getProfileImage()->hasImage()) {
132
+                            echo 'display: none;';
133
+                        }
134
+                        ?>"
135 135
                        href="<?= Url::to(['/user/image/crop', 'userGuid' => $user->guid, 'type' => ImageController::TYPE_PROFILE_IMAGE]); ?>"
136 136
                        class="btn btn-info btn-sm" data-target="#globalModal" data-backdrop="static"><i
137 137
                             class="fa fa-edit"></i></a>
Please login to merge, or discard this patch.
views/user/profile/home.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 
4 4
 <?= \humhub\modules\post\widgets\Form::widget(['contentContainer' => $user]); ?>
5 5
 <?=
6
- \humhub\modules\stream\widgets\StreamViewer::widget(array(
6
+    \humhub\modules\stream\widgets\StreamViewer::widget(array(
7 7
     'contentContainer' => $user,
8 8
     'streamAction' => '//user/profile/stream',
9 9
     'messageStreamEmpty' => ($user->permissionManager->can(new \humhub\modules\post\permissions\CreatePost())) ?
Please login to merge, or discard this patch.