Completed
Push — 0.2.3 ( 4e241d...b4719c )
by Anton
06:36 queued 02:56
created
www/engine/System/Classes/Utils/Messages.php 1 patch
Braces   +23 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,11 +12,15 @@  discard block
 block discarded – undo
12 12
 
13 13
 		private static function setMessage(string $type, string $text, string $header = null) {
14 14
 
15
-			if (('' === $text) || isset(self::$messages[$type])) return;
15
+			if (('' === $text) || isset(self::$messages[$type])) {
16
+				return;
17
+			}
16 18
 
17 19
 			self::$messages[$type] = ['text' => $text, 'header' => null];
18 20
 
19
-			if ((null !== $header) && ('' !== $header)) self::$messages[$type]['header'] = $header;
21
+			if ((null !== $header) && ('' !== $header)) {
22
+				self::$messages[$type]['header'] = $header;
23
+			}
20 24
 		}
21 25
 
22 26
 		# Init messages
@@ -30,7 +34,9 @@  discard block
 block discarded – undo
30 34
 
31 35
 		public static function info(string $text = null, string $header = null) {
32 36
 
33
-			if (null === $text) return (self::$messages['info'] ?? false);
37
+			if (null === $text) {
38
+				return (self::$messages['info'] ?? false);
39
+			}
34 40
 
35 41
 			self::setMessage('info', $text, $header);
36 42
 		}
@@ -39,7 +45,9 @@  discard block
 block discarded – undo
39 45
 
40 46
 		public static function warning(string $text = null, string $header = null) {
41 47
 
42
-			if (null === $text) return (self::$messages['warning'] ?? false);
48
+			if (null === $text) {
49
+				return (self::$messages['warning'] ?? false);
50
+			}
43 51
 
44 52
 			self::setMessage('warning', $text, $header);
45 53
 		}
@@ -48,7 +56,9 @@  discard block
 block discarded – undo
48 56
 
49 57
 		public static function error(string $text = null, string $header = null) {
50 58
 
51
-			if (null === $text) return (self::$messages['error'] ?? false);
59
+			if (null === $text) {
60
+				return (self::$messages['error'] ?? false);
61
+			}
52 62
 
53 63
 			self::setMessage('error', $text, $header);
54 64
 		}
@@ -57,7 +67,9 @@  discard block
 block discarded – undo
57 67
 
58 68
 		public static function success(string $text = null, string $header = null) {
59 69
 
60
-			if (null === $text) return (self::$messages['success'] ?? false);
70
+			if (null === $text) {
71
+				return (self::$messages['success'] ?? false);
72
+			}
61 73
 
62 74
 			self::setMessage('success', $text, $header);
63 75
 		}
@@ -74,7 +86,11 @@  discard block
 block discarded – undo
74 86
 
75 87
 				$block->type = $type; $block->text = Template::block($message['text']); $header = $block->block('header');
76 88
 
77
-				if (isset($message['header'])) $header->text = $message['header']; else $header->disable();
89
+				if (isset($message['header'])) {
90
+					$header->text = $message['header'];
91
+				} else {
92
+					$header->disable();
93
+				}
78 94
 			}
79 95
 
80 96
 			# ------------------------
Please login to merge, or discard this patch.
www/engine/System/Classes/Utils/Menu.php 2 patches
Braces   +15 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,7 +20,9 @@  discard block
 block discarded – undo
20 20
 
21 21
 				$item->children = ($children = Template::group());
22 22
 
23
-				foreach ($this->items[$id]['children'] as $child) $children->add($this->parseItem($child));
23
+				foreach ($this->items[$id]['children'] as $child) {
24
+					$children->add($this->parseItem($child));
25
+				}
24 26
 
25 27
 			} else {
26 28
 
@@ -46,7 +48,9 @@  discard block
 block discarded – undo
46 48
 
47 49
 					 ("FROM " . TABLE_MENU . " men ORDER BY men.parent_id ASC, men.position ASC, men.id ASC");
48 50
 
49
-			if (!(DB::send($query) && DB::last()->status)) return;
51
+			if (!(DB::send($query) && DB::last()->status)) {
52
+				return;
53
+			}
50 54
 
51 55
 			# Process results
52 56
 
@@ -57,9 +61,13 @@  discard block
 block discarded – undo
57 61
 				$this->items[$entity->id()] = $entity->data();
58 62
 			}
59 63
 
60
-			foreach ($this->items as $id => $item) if (0 === $item['parent_id']) $this->menu[] = $id;
64
+			foreach ($this->items as $id => $item) {
65
+				if (0 === $item['parent_id']) $this->menu[] = $id;
66
+			}
61 67
 
62
-			else if (isset($this->items[$item['parent_id']])) $this->items[$item['parent_id']]['children'][] = $id;
68
+			else if (isset($this->items[$item['parent_id']])) {
69
+				$this->items[$item['parent_id']]['children'][] = $id;
70
+			}
63 71
 		}
64 72
 
65 73
 		# Get block
@@ -68,7 +76,9 @@  discard block
 block discarded – undo
68 76
 
69 77
 			$menu = Template::group();
70 78
 
71
-			foreach ($this->menu as $id) $menu->add($this->parseItem($id));
79
+			foreach ($this->menu as $id) {
80
+				$menu->add($this->parseItem($id));
81
+			}
72 82
 
73 83
 			# ------------------------
74 84
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,9 +42,9 @@
 block discarded – undo
42 42
 
43 43
 			# Process selection
44 44
 
45
-			$query = ("SELECT men.id, men.parent_id, men.slug, men.text, men.target ") .
45
+			$query = ("SELECT men.id, men.parent_id, men.slug, men.text, men.target ").
46 46
 
47
-					 ("FROM " . TABLE_MENU . " men ORDER BY men.parent_id ASC, men.position ASC, men.id ASC");
47
+					 ("FROM ".TABLE_MENU." men ORDER BY men.parent_id ASC, men.position ASC, men.id ASC");
48 48
 
49 49
 			if (!(DB::send($query) && DB::last()->status)) return;
50 50
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Utils/Form.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,9 @@
 block discarded – undo
10 10
 
11 11
 		public function handle(callable $callback) {
12 12
 
13
-			if (false === ($post = $this->post())) return false;
13
+			if (false === ($post = $this->post())) {
14
+				return false;
15
+			}
14 16
 
15 17
 			# Check form for errors
16 18
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Utils/View.php 2 patches
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,13 +19,17 @@
 block discarded – undo
19 19
 
20 20
 		public static function get(string $name) {
21 21
 
22
-			if ('' === self::$section) throw new Exception\View();
22
+			if ('' === self::$section) {
23
+				throw new Exception\View();
24
+			}
23 25
 
24 26
 			$class_name = ('System\Views\\' . self::$section . '\\' . $name);
25 27
 
26
-			if (isset(self::$cache[$class_name])) $view = clone self::$cache[$class_name];
27
-
28
-			else $view = (self::$cache[$class_name] = new $class_name());
28
+			if (isset(self::$cache[$class_name])) {
29
+				$view = clone self::$cache[$class_name];
30
+			} else {
31
+				$view = (self::$cache[$class_name] = new $class_name());
32
+			}
29 33
 
30 34
 			# ------------------------
31 35
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
 			if ('' === self::$section) throw new Exception\View();
23 23
 
24
-			$class_name = ('Views\\' . self::$section . '\\' . $name);
24
+			$class_name = ('Views\\'.self::$section.'\\'.$name);
25 25
 
26 26
 			if (isset(self::$cache[$class_name])) $view = clone self::$cache[$class_name];
27 27
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Views/View.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,9 @@
 block discarded – undo
18 18
 
19 19
 		public function __construct() {
20 20
 
21
-			if (static::$section !== Extend\Templates::section()) return;
21
+			if (static::$section !== Extend\Templates::section()) {
22
+				return;
23
+			}
22 24
 
23 25
 			$file_name = (Extend\Templates::path() . static::$file_name);
24 26
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 
21 21
 			if (static::$section !== Extend\Templates::section()) return;
22 22
 
23
-			$file_name = (Extend\Templates::path() . static::$file_name);
23
+			$file_name = (Extend\Templates::path().static::$file_name);
24 24
 
25 25
 			parent::__construct(Explorer::contents($file_name));
26 26
 		}
Please login to merge, or discard this patch.
www/engine/System/Includes/Tables.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 # Database tables
4 4
 
5
-define('TABLE_PAGES',                               'pages');
6
-define('TABLE_MENU',                                'menu');
7
-define('TABLE_VARIABLES',                           'variables');
8
-define('TABLE_WIDGETS',                             'widgets');
5
+define('TABLE_PAGES', 'pages');
6
+define('TABLE_MENU', 'menu');
7
+define('TABLE_VARIABLES', 'variables');
8
+define('TABLE_WIDGETS', 'widgets');
9 9
 
10
-define('TABLE_USERS',                               'users');
11
-define('TABLE_USERS_SECRETS',                       'users_secrets');
12
-define('TABLE_USERS_SESSIONS',                      'users_sessions');
10
+define('TABLE_USERS', 'users');
11
+define('TABLE_USERS_SECRETS', 'users_secrets');
12
+define('TABLE_USERS_SESSIONS', 'users_sessions');
Please login to merge, or discard this patch.
www/engine/System/Exception.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,21 +4,21 @@
 block discarded – undo
4 4
 
5 5
 	# Captcha generate exception
6 6
 
7
-	class Captcha extends Exception  {
7
+	class Captcha extends Exception {
8 8
 
9 9
 		protected $message = 'Error generating captcha';
10 10
 	}
11 11
 
12 12
 	# Sitemap generate exception
13 13
 
14
-	class Sitemap extends Exception  {
14
+	class Sitemap extends Exception {
15 15
 
16 16
 		protected $message = 'Error generating sitemap';
17 17
 	}
18 18
 
19 19
 	# View not initialized exception
20 20
 
21
-	class View extends Exception  {
21
+	class View extends Exception {
22 22
 
23 23
 		protected $message = 'View is not initialized';
24 24
 	}
Please login to merge, or discard this patch.
www/engine/System/Languages/uk-UA/Phrases/Install.php 2 patches
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -58,43 +58,43 @@
 block discarded – undo
58 58
 	'INSTALL_PAGE_INDEX_TITLE'                  => 'Головна',
59 59
 
60 60
 	'INSTALL_PAGE_INDEX_CONTENTS'               => '<h2>Ласкаво просимо!</h2>' .
61
-	                                               '<p>Це демонстраційний сайт, що працює на <strong>Cadmium CMS</strong>.</p>' .
62
-	                                               '<p>Ви можете увійти в панель керування, перейшовши за <a href="$install_path$/admin">цим посиланням</a>.</p>' .
63
-	                                               '<h2>Дивіться також</h2>' .
64
-	                                               '<ul><li><a href="http://cadmium-cms.com" target="_blank">Офіційний сайт</a></li>' .
65
-	                                               '<li><a href="https://github.com/cadmium-org/cadmium-cms" target="_blank">Сторінка проекту на GitHub</a></li></ul>',
61
+												   '<p>Це демонстраційний сайт, що працює на <strong>Cadmium CMS</strong>.</p>' .
62
+												   '<p>Ви можете увійти в панель керування, перейшовши за <a href="$install_path$/admin">цим посиланням</a>.</p>' .
63
+												   '<h2>Дивіться також</h2>' .
64
+												   '<ul><li><a href="http://cadmium-cms.com" target="_blank">Офіційний сайт</a></li>' .
65
+												   '<li><a href="https://github.com/cadmium-org/cadmium-cms" target="_blank">Сторінка проекту на GitHub</a></li></ul>',
66 66
 
67 67
 	'INSTALL_PAGE_DEMO_TITLE'                   => 'Сторінка',
68 68
 
69 69
 	'INSTALL_PAGE_DEMO_CONTENTS'                => '<h2>Lorem ipsum</h2>' .
70 70
 
71
-	                                               '<p>Lorem ipsum dolor sit amet, ex etiam facilis vim. ' .
72
-	                                               'Qui etiam soluta nostro no, te praesent consulatu eos. ' .
73
-	                                               'His at modus diceret referrentur, exerci viderer aperiri et sed. ' .
74
-	                                               'Ne errem appareat apeirian has, ut has eligendi comprehensam. ' .
75
-	                                               'His ea adipisci eloquentiam, nec id temporibus appellantur. ' .
76
-	                                               'Pri ut inermis persequeris contentiones, vel vidit ponderum cu.</p>' .
71
+												   '<p>Lorem ipsum dolor sit amet, ex etiam facilis vim. ' .
72
+												   'Qui etiam soluta nostro no, te praesent consulatu eos. ' .
73
+												   'His at modus diceret referrentur, exerci viderer aperiri et sed. ' .
74
+												   'Ne errem appareat apeirian has, ut has eligendi comprehensam. ' .
75
+												   'His ea adipisci eloquentiam, nec id temporibus appellantur. ' .
76
+												   'Pri ut inermis persequeris contentiones, vel vidit ponderum cu.</p>' .
77 77
 
78
-	                                               '<h3>Vix no suas populo</h3>' .
78
+												   '<h3>Vix no suas populo</h3>' .
79 79
 
80
-	                                               '<p>Vix no suas populo. Mea inani utinam ex. Duo vocibus noluisse partiendo ei. ' .
81
-	                                               'Impedit voluptatibus pro ut, ea probatus reformidans pri. ' .
82
-	                                               'An vix repudiandae complectitur, ex soluta numquam splendide nam.</p>' .
80
+												   '<p>Vix no suas populo. Mea inani utinam ex. Duo vocibus noluisse partiendo ei. ' .
81
+												   'Impedit voluptatibus pro ut, ea probatus reformidans pri. ' .
82
+												   'An vix repudiandae complectitur, ex soluta numquam splendide nam.</p>' .
83 83
 
84
-	                                               '<p>Mea ex novum contentiones, eleifend ocurreret voluptaria et usu. ' .
85
-	                                               'No mel illum nonumy maiorum, pro saperet disputando in. Cum ei tritani accusam incorrupte. ' .
86
-	                                               'Per animal saperet suavitate id, vim ex quod delicatissimi.</p>' .
84
+												   '<p>Mea ex novum contentiones, eleifend ocurreret voluptaria et usu. ' .
85
+												   'No mel illum nonumy maiorum, pro saperet disputando in. Cum ei tritani accusam incorrupte. ' .
86
+												   'Per animal saperet suavitate id, vim ex quod delicatissimi.</p>' .
87 87
 
88
-	                                               '<h3>Ea mea tantas delenit</h3>' .
88
+												   '<h3>Ea mea tantas delenit</h3>' .
89 89
 
90
-	                                               '<p>Ea mea tantas delenit, ut usu alii commune. ' .
91
-	                                               'Te vix decore dolore scribentur. Ad pri malis invidunt ullamcorper, ' .
92
-	                                               'qui eu laboramus vulputate scriptorem, id veri audiam integre pro. ' .
93
-	                                               'Saperet luptatum recusabo quo cu, ' .'vix facer dolores persecuti no. ' .
94
-	                                               'Eos id omnes affert possim. Vix id commune urbanitas.</p>' .
90
+												   '<p>Ea mea tantas delenit, ut usu alii commune. ' .
91
+												   'Te vix decore dolore scribentur. Ad pri malis invidunt ullamcorper, ' .
92
+												   'qui eu laboramus vulputate scriptorem, id veri audiam integre pro. ' .
93
+												   'Saperet luptatum recusabo quo cu, ' .'vix facer dolores persecuti no. ' .
94
+												   'Eos id omnes affert possim. Vix id commune urbanitas.</p>' .
95 95
 
96
-	                                               '<p>Cu eum quod prodesset, vix sale democritum delicatissimi et, ' .
97
-	                                               'putant viderer inimicus pro ut. Sea ut tamquam hendrerit definitionem, ' .
98
-	                                               'an quo illud persecuti, debet affert vis te. Mei ea omnes saepe nostrum. ' .
99
-	                                               'In sed denique iudicabit. Id eos equidem scribentur.</p>'
96
+												   '<p>Cu eum quod prodesset, vix sale democritum delicatissimi et, ' .
97
+												   'putant viderer inimicus pro ut. Sea ut tamquam hendrerit definitionem, ' .
98
+												   'an quo illud persecuti, debet affert vis te. Mei ea omnes saepe nostrum. ' .
99
+												   'In sed denique iudicabit. Id eos equidem scribentur.</p>'
100 100
 ];
Please login to merge, or discard this patch.
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -60,44 +60,44 @@
 block discarded – undo
60 60
 
61 61
 	'INSTALL_PAGE_INDEX_TITLE'                  => 'Головна',
62 62
 
63
-	'INSTALL_PAGE_INDEX_CONTENTS'               => '<h2>Ласкаво просимо!</h2>' .
64
-	                                               '<p>Це демонстраційний сайт, що працює на <strong>Cadmium CMS</strong>.</p>' .
65
-	                                               '<p>Ви можете увійти в панель керування, перейшовши за <a href="$install_path$/admin">цим посиланням</a>.</p>' .
66
-	                                               '<h2>Дивіться також</h2>' .
67
-	                                               '<ul><li><a href="http://cadmium-cms.com" target="_blank">Офіційний сайт</a></li>' .
63
+	'INSTALL_PAGE_INDEX_CONTENTS'               => '<h2>Ласкаво просимо!</h2>'.
64
+	                                               '<p>Це демонстраційний сайт, що працює на <strong>Cadmium CMS</strong>.</p>'.
65
+	                                               '<p>Ви можете увійти в панель керування, перейшовши за <a href="$install_path$/admin">цим посиланням</a>.</p>'.
66
+	                                               '<h2>Дивіться також</h2>'.
67
+	                                               '<ul><li><a href="http://cadmium-cms.com" target="_blank">Офіційний сайт</a></li>'.
68 68
 	                                               '<li><a href="https://github.com/cadmium-org/cadmium-cms" target="_blank">Сторінка проекту на GitHub</a></li></ul>',
69 69
 
70 70
 	'INSTALL_PAGE_DEMO_TITLE'                   => 'Сторінка',
71 71
 
72
-	'INSTALL_PAGE_DEMO_CONTENTS'                => '<h2>Lorem ipsum</h2>' .
72
+	'INSTALL_PAGE_DEMO_CONTENTS'                => '<h2>Lorem ipsum</h2>'.
73 73
 
74
-	                                               '<p>Lorem ipsum dolor sit amet, ex etiam facilis vim. ' .
75
-	                                               'Qui etiam soluta nostro no, te praesent consulatu eos. ' .
76
-	                                               'His at modus diceret referrentur, exerci viderer aperiri et sed. ' .
77
-	                                               'Ne errem appareat apeirian has, ut has eligendi comprehensam. ' .
78
-	                                               'His ea adipisci eloquentiam, nec id temporibus appellantur. ' .
79
-	                                               'Pri ut inermis persequeris contentiones, vel vidit ponderum cu.</p>' .
74
+	                                               '<p>Lorem ipsum dolor sit amet, ex etiam facilis vim. '.
75
+	                                               'Qui etiam soluta nostro no, te praesent consulatu eos. '.
76
+	                                               'His at modus diceret referrentur, exerci viderer aperiri et sed. '.
77
+	                                               'Ne errem appareat apeirian has, ut has eligendi comprehensam. '.
78
+	                                               'His ea adipisci eloquentiam, nec id temporibus appellantur. '.
79
+	                                               'Pri ut inermis persequeris contentiones, vel vidit ponderum cu.</p>'.
80 80
 
81
-	                                               '<h3>Vix no suas populo</h3>' .
81
+	                                               '<h3>Vix no suas populo</h3>'.
82 82
 
83
-	                                               '<p>Vix no suas populo. Mea inani utinam ex. Duo vocibus noluisse partiendo ei. ' .
84
-	                                               'Impedit voluptatibus pro ut, ea probatus reformidans pri. ' .
85
-	                                               'An vix repudiandae complectitur, ex soluta numquam splendide nam.</p>' .
83
+	                                               '<p>Vix no suas populo. Mea inani utinam ex. Duo vocibus noluisse partiendo ei. '.
84
+	                                               'Impedit voluptatibus pro ut, ea probatus reformidans pri. '.
85
+	                                               'An vix repudiandae complectitur, ex soluta numquam splendide nam.</p>'.
86 86
 
87
-	                                               '<p>Mea ex novum contentiones, eleifend ocurreret voluptaria et usu. ' .
88
-	                                               'No mel illum nonumy maiorum, pro saperet disputando in. Cum ei tritani accusam incorrupte. ' .
89
-	                                               'Per animal saperet suavitate id, vim ex quod delicatissimi.</p>' .
87
+	                                               '<p>Mea ex novum contentiones, eleifend ocurreret voluptaria et usu. '.
88
+	                                               'No mel illum nonumy maiorum, pro saperet disputando in. Cum ei tritani accusam incorrupte. '.
89
+	                                               'Per animal saperet suavitate id, vim ex quod delicatissimi.</p>'.
90 90
 
91
-	                                               '<h3>Ea mea tantas delenit</h3>' .
91
+	                                               '<h3>Ea mea tantas delenit</h3>'.
92 92
 
93
-	                                               '<p>Ea mea tantas delenit, ut usu alii commune. ' .
94
-	                                               'Te vix decore dolore scribentur. Ad pri malis invidunt ullamcorper, ' .
95
-	                                               'qui eu laboramus vulputate scriptorem, id veri audiam integre pro. ' .
96
-	                                               'Saperet luptatum recusabo quo cu, ' .'vix facer dolores persecuti no. ' .
97
-	                                               'Eos id omnes affert possim. Vix id commune urbanitas.</p>' .
93
+	                                               '<p>Ea mea tantas delenit, ut usu alii commune. '.
94
+	                                               'Te vix decore dolore scribentur. Ad pri malis invidunt ullamcorper, '.
95
+	                                               'qui eu laboramus vulputate scriptorem, id veri audiam integre pro. '.
96
+	                                               'Saperet luptatum recusabo quo cu, '.'vix facer dolores persecuti no. '.
97
+	                                               'Eos id omnes affert possim. Vix id commune urbanitas.</p>'.
98 98
 
99
-	                                               '<p>Cu eum quod prodesset, vix sale democritum delicatissimi et, ' .
100
-	                                               'putant viderer inimicus pro ut. Sea ut tamquam hendrerit definitionem, ' .
101
-	                                               'an quo illud persecuti, debet affert vis te. Mei ea omnes saepe nostrum. ' .
99
+	                                               '<p>Cu eum quod prodesset, vix sale democritum delicatissimi et, '.
100
+	                                               'putant viderer inimicus pro ut. Sea ut tamquam hendrerit definitionem, '.
101
+	                                               'an quo illud persecuti, debet affert vis te. Mei ea omnes saepe nostrum. '.
102 102
 	                                               'In sed denique iudicabit. Id eos equidem scribentur.</p>'
103 103
 ];
Please login to merge, or discard this patch.
www/engine/System/Languages/uk-UA/Phrases/Admin.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,9 +64,9 @@
 block discarded – undo
64 64
 	'DASHBOARD_GROUP_DATABASE'                  => 'База даних',
65 65
 
66 66
 	'DASHBOARD_MESSAGE_INSTALL_FILE'            => 'Інсталяційний файл <a href="$install_path$/install.php" target="_blank">install.php</a> ' .
67
-	                                               'досі знаходиться в кореневій директорії сайта. Необхідно видалити його.',
67
+												   'досі знаходиться в кореневій директорії сайта. Необхідно видалити його.',
68 68
 	'DASHBOARD_MESSAGE_CONFIG_FILE'             => 'Схоже, Ви поки не редагували конфігурацію сайта. '.
69
-	                                               'Перейдіть на <a href="$install_path$/admin/system/settings">сторінку налаштувань</a> для введення актуальних значень.',
69
+												   'Перейдіть на <a href="$install_path$/admin/system/settings">сторінку налаштувань</a> для введення актуальних значень.',
70 70
 
71 71
 	# Pages
72 72
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 	'DASHBOARD_GROUP_GENERAL'                   => 'Основне',
64 64
 	'DASHBOARD_GROUP_DATABASE'                  => 'База даних',
65 65
 
66
-	'DASHBOARD_MESSAGE_INSTALL_FILE'            => 'Інсталяційний файл <a href="$install_path$/install.php" target="_blank">install.php</a> ' .
66
+	'DASHBOARD_MESSAGE_INSTALL_FILE'            => 'Інсталяційний файл <a href="$install_path$/install.php" target="_blank">install.php</a> '.
67 67
 	                                               'досі знаходиться в кореневій директорії сайта. Необхідно видалити його.',
68 68
 	'DASHBOARD_MESSAGE_CONFIG_FILE'             => 'Схоже, Ви поки не редагували конфігурацію сайта. '.
69 69
 	                                               'Перейдіть на <a href="$install_path$/admin/system/settings">сторінку налаштувань</a> для введення актуальних значень.',
Please login to merge, or discard this patch.