Passed
Push — master ( 7f6cde...02a4a5 )
by Mihail
06:02
created
Private/Config/Default.php 1 patch
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -1,40 +1,40 @@
 block discarded – undo
1 1
 <?php return [
2
-	'baseProto' => 'http',
3
-	'baseDomain' => 'ffcms.app',
4
-	'basePath' => '/',
5
-	'passwordSalt' => '$2a$07$2NJgci5A7NI9m2J9Ii92a1I3DiH6$',
6
-	'timezone' => 'Europe/Moscow',
7
-	'debug' => [
8
-		'all' => false,
9
-		'cookie' => [
10
-			'key' => 'fdebug_jepP2',
11
-			'value' => 'pOH1Kj18fHN7mk9a81F32eJbl9d3AeDjLC1g7poPGE22Ii6pI68P5B6O5hKMofnLPB0lFdpo2a2o78NhedjGA'
12
-		]
13
-	],
14
-	'theme' => [
15
-		'Front' => 'default',
16
-		'Admin' => 'default'
17
-	],
18
-	'database' => [
19
-		'driver' => 'mysql',
20
-		'host' => '127.0.0.1',
21
-		'username' => 'mysql',
22
-		'password' => 'mysql',
23
-		'database' => 'ffcms',
24
-		'prefix' => 'ffcms_',
25
-		'charset' => 'utf8',
26
-		'collation' => 'utf8_unicode_ci'
27
-	],
28
-	'adminEmail' => '[email protected]',
29
-	'baseLanguage' => 'en',
30
-	'multiLanguage' => true,
31
-	'singleLanguage' => 'en',
32
-	'languages' => [
33
-		'en',
34
-		'ru'
35
-	],
36
-	'languageDomainAlias' => false,
37
-	'gaClientId' => '570934480862-son8fr180fr6u6tlt9iqpjpoesngro0o.apps.googleusercontent.com',
38
-	'gaTrackId' => false,
39
-	'trustedProxy' => false
2
+    'baseProto' => 'http',
3
+    'baseDomain' => 'ffcms.app',
4
+    'basePath' => '/',
5
+    'passwordSalt' => '$2a$07$2NJgci5A7NI9m2J9Ii92a1I3DiH6$',
6
+    'timezone' => 'Europe/Moscow',
7
+    'debug' => [
8
+        'all' => false,
9
+        'cookie' => [
10
+            'key' => 'fdebug_jepP2',
11
+            'value' => 'pOH1Kj18fHN7mk9a81F32eJbl9d3AeDjLC1g7poPGE22Ii6pI68P5B6O5hKMofnLPB0lFdpo2a2o78NhedjGA'
12
+        ]
13
+    ],
14
+    'theme' => [
15
+        'Front' => 'default',
16
+        'Admin' => 'default'
17
+    ],
18
+    'database' => [
19
+        'driver' => 'mysql',
20
+        'host' => '127.0.0.1',
21
+        'username' => 'mysql',
22
+        'password' => 'mysql',
23
+        'database' => 'ffcms',
24
+        'prefix' => 'ffcms_',
25
+        'charset' => 'utf8',
26
+        'collation' => 'utf8_unicode_ci'
27
+    ],
28
+    'adminEmail' => '[email protected]',
29
+    'baseLanguage' => 'en',
30
+    'multiLanguage' => true,
31
+    'singleLanguage' => 'en',
32
+    'languages' => [
33
+        'en',
34
+        'ru'
35
+    ],
36
+    'languageDomainAlias' => false,
37
+    'gaClientId' => '570934480862-son8fr180fr6u6tlt9iqpjpoesngro0o.apps.googleusercontent.com',
38
+    'gaTrackId' => false,
39
+    'trustedProxy' => false
40 40
 ];
41 41
\ No newline at end of file
Please login to merge, or discard this patch.
Apps/Controller/Front/Profile.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 use Ffcms\Core\Helper\Date;
3
-use Ffcms\Core\Helper\Text;
4 3
 use Ffcms\Core\Helper\Url;
5 4
 use Apps\Model\Api\Comments\EntityCommentData;
6 5
 
Please login to merge, or discard this patch.
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
         $records = null;
52 52
 
53 53
         // set current page and offset
54
-        $page = (int)App::$Request->query->get('page', 0);
54
+        $page = (int) App::$Request->query->get('page', 0);
55 55
         $cfgs = Serialize::decode($this->application->configs);
56
-        $userPerPage = (int)$cfgs['usersOnPage'];
56
+        $userPerPage = (int) $cfgs['usersOnPage'];
57 57
         if ($userPerPage < 1) {
58 58
             $userPerPage = 1;
59 59
         }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         switch ($filter_name) {
63 63
             case 'rating': // rating list, order by rating DESC
64 64
                 // check if rating is enabled
65
-                if ((int)$cfgs['rating'] !== 1) {
65
+                if ((int) $cfgs['rating'] !== 1) {
66 66
                     throw new NotFoundException();
67 67
                 }
68 68
                 $records = (new ProfileRecords())->orderBy('rating', 'DESC');
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
                 if (Str::likeEmpty($filter_value)) {
72 72
                     throw new NotFoundException();
73 73
                 }
74
-                $records = (new ProfileRecords())->where('hobby', 'like', '%' . $filter_value . '%');
74
+                $records = (new ProfileRecords())->where('hobby', 'like', '%'.$filter_value.'%');
75 75
                 break;
76 76
             case 'city':
77 77
                 if (Str::likeEmpty($filter_value)) {
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
                 if ($filter_value === null || !Obj::isLikeInt($filter_value)) {
84 84
                     throw new NotFoundException();
85 85
                 }
86
-                $records = (new ProfileRecords())->where('birthday', 'like', $filter_value . '-%');
86
+                $records = (new ProfileRecords())->where('birthday', 'like', $filter_value.'-%');
87 87
                 break;
88 88
             case 'all':
89 89
                 $records = (new ProfileRecords())->orderBy('id', 'DESC');
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
             'pagination' => $pagination,
107 107
             'id' => $filter_name,
108 108
             'add' => $filter_value,
109
-            'ratingOn' => (int)$cfgs['rating']
109
+            'ratingOn' => (int) $cfgs['rating']
110 110
         ]);
111 111
     }
112 112
 
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     public function actionShow($userId)
123 123
     {
124 124
         $cfg = Serialize::decode($this->application->configs);
125
-        if ((int)$cfg['guestView'] !== 1 && !App::$User->isAuth()) {
125
+        if ((int) $cfg['guestView'] !== 1 && !App::$User->isAuth()) {
126 126
             throw new ForbiddenException(__('You must login to view other profile'));
127 127
         }
128 128
         // check if target exists
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                     App::$Session->getFlashBag()->add('error', __('This user are in your black list or you are in blacklist!'));
145 145
                 } else {
146 146
                     // check if message added
147
-                    if ($wallModel->makePost($targetPersone, $viewerPersone, (int)$cfg['delayBetweenPost'])) {
147
+                    if ($wallModel->makePost($targetPersone, $viewerPersone, (int) $cfg['delayBetweenPost'])) {
148 148
                         App::$Session->getFlashBag()->add('success', __('The message was successful posted!'));
149 149
                     } else {
150 150
                         App::$Session->getFlashBag()->add('warning', __('Posting message was failed! Please, wait few seconds'));
@@ -155,8 +155,8 @@  discard block
 block discarded – undo
155 155
 
156 156
         $query = $targetPersone->getWall(); // relation hasMany from users to walls
157 157
         // pagination and query params
158
-        $wallPage = (int)App::$Request->query->get('page');
159
-        $wallItems = (int)$cfg['wallPostOnPage'];
158
+        $wallPage = (int) App::$Request->query->get('page');
159
+        $wallItems = (int) $cfg['wallPostOnPage'];
160 160
         $wallOffset = $wallPage * $wallItems;
161 161
 
162 162
         // build pagination
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
             'notify' => App::$Session->getFlashBag()->all(),
179 179
             'wallRecords' => $wallRecords,
180 180
             'pagination' => $wallPagination,
181
-            'ratingOn' => (int)$cfg['rating'] === 1
181
+            'ratingOn' => (int) $cfg['rating'] === 1
182 182
         ]);
183 183
     }
184 184
 
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
         $wallModel = new FormWallPostDelete($wallPost);
251 251
         if ($wallModel->send() && $wallModel->validate()) {
252 252
             $wallModel->make();
253
-            App::$Response->redirect('profile/show/' . $wallPost->target_id);
253
+            App::$Response->redirect('profile/show/'.$wallPost->target_id);
254 254
         }
255 255
 
256 256
         return App::$View->render('wall_delete', [
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
         }
283 283
 
284 284
         // get page index and current user object
285
-        $page = (int)App::$Request->query->get('page', 0);
285
+        $page = (int) App::$Request->query->get('page', 0);
286 286
         $offset = $page * static::NOTIFY_PER_PAGE;
287 287
         $user = App::$User->identity();
288 288
 
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
 
392 392
         // set user id from ?id= get param if form not sended
393 393
         if (!$model->send()) {
394
-            $uid = (int)App::$Request->query->get('id');
394
+            $uid = (int) App::$Request->query->get('id');
395 395
             if ($uid > 0) {
396 396
                 $model->id = $uid;
397 397
             }
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
         // get blocked users
410 410
         $records = Blacklist::where('user_id', '=', $user->getId());
411 411
 
412
-        $page = (int)App::$Request->query->get('page');
412
+        $page = (int) App::$Request->query->get('page');
413 413
         $offset = $page * self::BLOCK_PER_PAGE;
414 414
 
415 415
         // build pagination
@@ -514,9 +514,9 @@  discard block
 block discarded – undo
514 514
         // check if request is sended
515 515
         if ($model->send() && $model->validate()) {
516 516
             // get records from db
517
-            $records = ProfileRecords::where('nick', 'like', '%' . $model->query . '%');
518
-            $page = (int)App::$Request->query->get('page');
519
-            $userPerPage = (int)$cfgs['usersOnPage'];
517
+            $records = ProfileRecords::where('nick', 'like', '%'.$model->query.'%');
518
+            $page = (int) App::$Request->query->get('page');
519
+            $userPerPage = (int) $cfgs['usersOnPage'];
520 520
             if ($userPerPage < 1) {
521 521
                 $userPerPage = 1;
522 522
             }
@@ -538,7 +538,7 @@  discard block
 block discarded – undo
538 538
             'model' => $model->filter(),
539 539
             'records' => $records,
540 540
             'pagination' => $pagination,
541
-            'ratingOn' => (int)$cfgs['rating']
541
+            'ratingOn' => (int) $cfgs['rating']
542 542
         ]);
543 543
     }
544 544
 
@@ -562,7 +562,7 @@  discard block
 block discarded – undo
562 562
         // build sitemap from content items via business model
563 563
         $sitemap = new EntityBuildMap($langs);
564 564
         foreach ($profiles->get() as $user) {
565
-            $sitemap->add('profile/show/' . $user->user_id, $user->updated_at, 'weekly', 0.2);
565
+            $sitemap->add('profile/show/'.$user->user_id, $user->updated_at, 'weekly', 0.2);
566 566
         }
567 567
 
568 568
         $sitemap->save('profile');
Please login to merge, or discard this patch.
Apps/Model/Front/Profile/FormWallPost.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Apps\Model\Front\Profile;
4 4
 
5
-use Apps\ActiveRecord\Blacklist;
6 5
 use Apps\ActiveRecord\WallPost as WallRecords;
7 6
 use Ffcms\Core\App;
8 7
 use Ffcms\Core\Helper\Text;
9
-use Ffcms\Core\Helper\Url;
10 8
 use Ffcms\Core\Interfaces\iUser;
11 9
 use Ffcms\Core\Arch\Model;
12 10
 use Ffcms\Core\Helper\Date;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         // add user notification
63 63
         if ($target->id !== $viewer->id) {
64 64
             $notify = new EntityAddNotification($target->id);
65
-            $notify->add('profile/show/' . $target->id . '#wall-post-' . $record->id, EntityAddNotification::MSG_ADD_WALLPOST, ['snippet' => Text::snippet($this->message, 50)]);
65
+            $notify->add('profile/show/'.$target->id.'#wall-post-'.$record->id, EntityAddNotification::MSG_ADD_WALLPOST, ['snippet' => Text::snippet($this->message, 50)]);
66 66
         }
67 67
 
68 68
         // cleanup message
Please login to merge, or discard this patch.
Apps/View/Admin/default/sitemap/index.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,19 +15,19 @@
 block discarded – undo
15 15
 <h1><?= __('Sitemap') ?></h1>
16 16
 <hr />
17 17
 <p><?= __('Sitemap its a special application to generate sitemap as xml file over sitemap standart for search engines.') ?></p>
18
-<p><?= __('Sitemap main index') ?>: <a href="<?= \App::$Alias->scriptUrl . '/sitemap' ?>" target="_blank">/sitemap</a></p>
18
+<p><?= __('Sitemap main index') ?>: <a href="<?= \App::$Alias->scriptUrl.'/sitemap' ?>" target="_blank">/sitemap</a></p>
19 19
 <h3><?= __('Sitemap files') ?></h3>
20 20
 <?php
21 21
 $items = [];
22 22
 if ($model->files === null || count($model->files) < 1) {
23
-    echo '<p class="alert alert-warning">' . __('No sitemap files found! Maybe cron manager is not configured') . '</p>';
23
+    echo '<p class="alert alert-warning">'.__('No sitemap files found! Maybe cron manager is not configured').'</p>';
24 24
     return;
25 25
 }
26 26
 
27
-foreach($model->files as $file) {
27
+foreach ($model->files as $file) {
28 28
     $items[] = [
29 29
         'type' => 'link',
30
-        'link' => \App::$Alias->scriptUrl . $file,
30
+        'link' => \App::$Alias->scriptUrl.$file,
31 31
         'text' => $file,
32 32
         'linkProperty' => ['target' => '_blank']
33 33
     ];
Please login to merge, or discard this patch.
Apps/View/Front/default/profile/notifications.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 <hr />
18 18
 <?php
19 19
 if ($model->items === null || count($model->items) < 1) {
20
-    echo '<p class="alert alert-warning">' . __('No notifications available') . '</p>';
20
+    echo '<p class="alert alert-warning">'.__('No notifications available').'</p>';
21 21
     return;
22 22
 }
23 23
 ?>
Please login to merge, or discard this patch.
Apps/Model/Api/Comments/CommentAnswerAdd.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -49,12 +49,12 @@  discard block
 block discarded – undo
49 49
     public function check()
50 50
     {
51 51
         // check if user is auth'd or guest name is defined
52
-        if (!App::$User->isAuth() && ((int)$this->_configs['guestAdd'] !== 1 || Str::length($this->guestName) < 2)) {
52
+        if (!App::$User->isAuth() && ((int) $this->_configs['guestAdd'] !== 1 || Str::length($this->guestName) < 2)) {
53 53
             throw new JsonException(__('Guest name is not defined'));
54 54
         }
55 55
 
56 56
         // guest moderation
57
-        if (!App::$User->isAuth() && (bool)$this->_configs['guestModerate']) {
57
+        if (!App::$User->isAuth() && (bool) $this->_configs['guestModerate']) {
58 58
             $captcha = App::$Request->request->get('captcha');
59 59
             if (!App::$Captcha->validate($captcha)) {
60 60
                 throw new JsonException(__('Captcha is incorrect! Click on image to refresh and try again'));
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         }
68 68
 
69 69
         // check if message length is correct
70
-        if (Str::length($this->message) < (int)$this->_configs['minLength'] || Str::length($this->message) > (int)$this->_configs['maxLength']) {
70
+        if (Str::length($this->message) < (int) $this->_configs['minLength'] || Str::length($this->message) > (int) $this->_configs['maxLength']) {
71 71
             throw new JsonException(__('Message length is incorrect. Current: %cur%, min - %min%, max - %max%', [
72 72
                 'cur' => Str::length($this->message),
73 73
                 'min' => $this->_configs['minLength'],
@@ -112,15 +112,15 @@  discard block
 block discarded – undo
112 112
         $record->lang = App::$Request->getLanguage();
113 113
         $record->ip = $this->ip;
114 114
         // check if premoderation is enabled and user is guest
115
-        if ((bool)$this->_configs['guestModerate'] && $this->_userId < 1) {
115
+        if ((bool) $this->_configs['guestModerate'] && $this->_userId < 1) {
116 116
             $record->moderate = 1;
117 117
         }
118 118
         $record->save();
119 119
 
120 120
         // add notification for comment post owner
121 121
         $commentPost = $record->getCommentPost();
122
-        if ($commentPost !== null && (int)$commentPost->user_id !== 0 && (int)$commentPost->user_id !== $this->_userId) {
123
-            $notify = new EntityAddNotification((int)$commentPost->user_id);
122
+        if ($commentPost !== null && (int) $commentPost->user_id !== 0 && (int) $commentPost->user_id !== $this->_userId) {
123
+            $notify = new EntityAddNotification((int) $commentPost->user_id);
124 124
             $notify->add($commentPost->pathway, EntityAddNotification::MSG_ADD_COMMENTANSWER, [
125 125
                 'snippet' => Text::snippet(App::$Security->strip_tags($this->message), 50),
126 126
                 'post' => Text::snippet(App::$Security->strip_tags($commentPost->message), 50)
Please login to merge, or discard this patch.
Apps/Model/Front/Sitemap/EntityIndexList.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,10 +47,10 @@  discard block
 block discarded – undo
47 47
         $scan = File::listFiles(static::INDEX_PATH, ['.xml'], true);
48 48
         if (Obj::isArray($scan)) {
49 49
             foreach ($scan as $file) {
50
-                if ($this->_lang !== null && !Str::contains('.' . $this->_lang, $file)) {
50
+                if ($this->_lang !== null && !Str::contains('.'.$this->_lang, $file)) {
51 51
                     continue;
52 52
                 }
53
-                $this->files[] = static::INDEX_PATH . '/' . $file;
53
+                $this->files[] = static::INDEX_PATH.'/'.$file;
54 54
             }
55 55
         }
56 56
     }
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         // build file information data
68 68
         foreach ($this->files as $file) {
69 69
             $this->info[] = [
70
-                'loc' => App::$Alias->scriptUrl . $file,
70
+                'loc' => App::$Alias->scriptUrl.$file,
71 71
                 'lastmod' => Date::convertToDatetime(File::mTime($file), 'c')
72 72
             ];
73 73
         }
Please login to merge, or discard this patch.
Apps/Model/Front/Profile/EntityNotificationsList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
             $this->items[] = [
59 59
                 'text' => $text,
60 60
                 'date' => Date::humanize($record->created_at),
61
-                'new' => (bool)$record->readed === false
61
+                'new' => (bool) $record->readed === false
62 62
             ];
63 63
         }
64 64
     }
Please login to merge, or discard this patch.
Private/Database/install.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -5,30 +5,30 @@
 block discarded – undo
5 5
 }
6 6
 
7 7
 // require all tables
8
-require_once(root . '/Private/Database/Tables/App.php');
9
-require_once(root . '/Private/Database/Tables/Blacklist.php');
10
-require_once(root . '/Private/Database/Tables/CommentAnswer.php');
11
-require_once(root . '/Private/Database/Tables/CommentPost.php');
12
-require_once(root . '/Private/Database/Tables/Content.php');
13
-require_once(root . '/Private/Database/Tables/ContentCategory.php');
14
-require_once(root . '/Private/Database/Tables/ContentRating.php');
15
-require_once(root . '/Private/Database/Tables/ContentTag.php');
16
-require_once(root . '/Private/Database/Tables/FeedbackAnswer.php');
17
-require_once(root . '/Private/Database/Tables/FeedbackPost.php');
18
-require_once(root . '/Private/Database/Tables/Invite.php');
19
-require_once(root . '/Private/Database/Tables/Message.php');
20
-require_once(root . '/Private/Database/Tables/Profile.php');
21
-require_once(root . '/Private/Database/Tables/ProfileField.php');
22
-require_once(root . '/Private/Database/Tables/ProfileRating.php');
23
-require_once(root . '/Private/Database/Tables/Role.php');
24
-require_once(root . '/Private/Database/Tables/Session.php');
25
-require_once(root . '/Private/Database/Tables/User.php');
26
-require_once(root . '/Private/Database/Tables/UserLog.php');
27
-require_once(root . '/Private/Database/Tables/UserNotification.php');
28
-require_once(root . '/Private/Database/Tables/UserProvider.php');
29
-require_once(root . '/Private/Database/Tables/UserRecovery.php');
30
-require_once(root . '/Private/Database/Tables/WallPost.php');
31
-require_once(root . '/Private/Database/Tables/WallAnswer.php');
8
+require_once(root.'/Private/Database/Tables/App.php');
9
+require_once(root.'/Private/Database/Tables/Blacklist.php');
10
+require_once(root.'/Private/Database/Tables/CommentAnswer.php');
11
+require_once(root.'/Private/Database/Tables/CommentPost.php');
12
+require_once(root.'/Private/Database/Tables/Content.php');
13
+require_once(root.'/Private/Database/Tables/ContentCategory.php');
14
+require_once(root.'/Private/Database/Tables/ContentRating.php');
15
+require_once(root.'/Private/Database/Tables/ContentTag.php');
16
+require_once(root.'/Private/Database/Tables/FeedbackAnswer.php');
17
+require_once(root.'/Private/Database/Tables/FeedbackPost.php');
18
+require_once(root.'/Private/Database/Tables/Invite.php');
19
+require_once(root.'/Private/Database/Tables/Message.php');
20
+require_once(root.'/Private/Database/Tables/Profile.php');
21
+require_once(root.'/Private/Database/Tables/ProfileField.php');
22
+require_once(root.'/Private/Database/Tables/ProfileRating.php');
23
+require_once(root.'/Private/Database/Tables/Role.php');
24
+require_once(root.'/Private/Database/Tables/Session.php');
25
+require_once(root.'/Private/Database/Tables/User.php');
26
+require_once(root.'/Private/Database/Tables/UserLog.php');
27
+require_once(root.'/Private/Database/Tables/UserNotification.php');
28
+require_once(root.'/Private/Database/Tables/UserProvider.php');
29
+require_once(root.'/Private/Database/Tables/UserRecovery.php');
30
+require_once(root.'/Private/Database/Tables/WallPost.php');
31
+require_once(root.'/Private/Database/Tables/WallAnswer.php');
32 32
 
33 33
 // use default preset (for none or other presets)
34
-require_once (root . '/Private/Database/Other/PresetDefault.php');
35 34
\ No newline at end of file
35
+require_once (root.'/Private/Database/Other/PresetDefault.php');
36 36
\ No newline at end of file
Please login to merge, or discard this patch.