Completed
Pull Request — master (#7)
by Anton
04:49
created
www/engine/System/Classes/Utils/Tools/Sitemap.php 1 patch
Braces   +21 added lines, -7 removed lines patch added patch discarded remove patch
@@ -14,7 +14,9 @@  discard block
 block discarded – undo
14 14
 
15 15
 			$urlset = '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" />';
16 16
 
17
-			if (false !== ($xml = XML::create($urlset))) $this->xml = $xml;
17
+			if (false !== ($xml = XML::create($urlset))) {
18
+				$this->xml = $xml;
19
+			}
18 20
 		}
19 21
 
20 22
 		# Load sitemap
@@ -25,9 +27,13 @@  discard block
 block discarded – undo
25 27
 
26 28
 			$modified = Explorer::modified($file_name);
27 29
 
28
-			if ((false === $modified) || ($modified <= $time)) return false;
30
+			if ((false === $modified) || ($modified <= $time)) {
31
+				return false;
32
+			}
29 33
 
30
-			if (false === ($xml = Explorer::xml($file_name))) return false;
34
+			if (false === ($xml = Explorer::xml($file_name))) {
35
+				return false;
36
+			}
31 37
 
32 38
 			# ------------------------
33 39
 
@@ -38,7 +44,9 @@  discard block
 block discarded – undo
38 44
 
39 45
 		public function save() {
40 46
 
41
-			if ((null === $this->xml) || $this->loaded) return false;
47
+			if ((null === $this->xml) || $this->loaded) {
48
+				return false;
49
+			}
42 50
 
43 51
 			$file_name = (DIR_SYSTEM_DATA . 'Sitemap.xml');
44 52
 
@@ -51,9 +59,13 @@  discard block
 block discarded – undo
51 59
 
52 60
 		public function add(string $loc, string $lastmod = null, string $changefreq = null, float $priority = null) {
53 61
 
54
-			if ((null === $this->xml) || $this->loaded) return false;
62
+			if ((null === $this->xml) || $this->loaded) {
63
+				return false;
64
+			}
55 65
 
56
-			if (false === ($loc = Validate::url($loc))) return false;
66
+			if (false === ($loc = Validate::url($loc))) {
67
+				return false;
68
+			}
57 69
 
58 70
 			# Create url object
59 71
 
@@ -75,7 +87,9 @@  discard block
 block discarded – undo
75 87
 
76 88
 			# Set priority
77 89
 
78
-			if (null !== $priority) $url->addChild('priority', Number::formatFloat($priority, 0, 1, 1));
90
+			if (null !== $priority) {
91
+				$url->addChild('priority', Number::formatFloat($priority, 0, 1, 1));
92
+			}
79 93
 
80 94
 			# ------------------------
81 95
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Utils/Tools/Captcha.php 1 patch
Braces   +42 added lines, -13 removed lines patch added patch discarded remove patch
@@ -12,11 +12,19 @@  discard block
 block discarded – undo
12 12
 
13 13
 		private function allocateColor(array $color = null) {
14 14
 
15
-			if (!is_resource($this->image)) return false;
15
+			if (!is_resource($this->image)) {
16
+				return false;
17
+			}
16 18
 
17
-			if (null === $color) $color = [0, 0, 0]; else if (count($color) !== 3) return false;
19
+			if (null === $color) {
20
+				$color = [0, 0, 0];
21
+			} else if (count($color) !== 3) {
22
+				return false;
23
+			}
18 24
 
19
-			foreach (array_values($color) as $key => $value) $color[$key] = Number::format($value, 0, 255);
25
+			foreach (array_values($color) as $key => $value) {
26
+				$color[$key] = Number::format($value, 0, 255);
27
+			}
20 28
 
21 29
 			# ------------------------
22 30
 
@@ -27,7 +35,9 @@  discard block
 block discarded – undo
27 35
 
28 36
 		public function __construct(int $width, int $height, array $bg_color = null) {
29 37
 
30
-			if (false === ($image = imagecreatetruecolor($width, $height))) return;
38
+			if (false === ($image = imagecreatetruecolor($width, $height))) {
39
+				return;
40
+			}
31 41
 
32 42
 			$this->image = $image; $this->width = $width; $this->height = $height;
33 43
 
@@ -41,11 +51,17 @@  discard block
 block discarded – undo
41 51
 
42 52
 		public function text(string $font, int $size, int $indent, int $step, string $text, array $color = null) {
43 53
 
44
-			if (!is_resource($this->image)) return false;
54
+			if (!is_resource($this->image)) {
55
+				return false;
56
+			}
45 57
 
46
-			if (!Explorer::isFile($font)) return false;
58
+			if (!Explorer::isFile($font)) {
59
+				return false;
60
+			}
47 61
 
48
-			if (false === ($color = $this->allocateColor($color))) return false;
62
+			if (false === ($color = $this->allocateColor($color))) {
63
+				return false;
64
+			}
49 65
 
50 66
 			$base = (floor(($this->height - $size) / 2) + $size);
51 67
 
@@ -65,13 +81,22 @@  discard block
 block discarded – undo
65 81
 
66 82
 		public function noise(int $rate, array $color = null) {
67 83
 
68
-			if (!is_resource($this->image)) return false;
84
+			if (!is_resource($this->image)) {
85
+				return false;
86
+			}
69 87
 
70
-			if (false === ($color = $this->allocateColor($color))) return false;
88
+			if (false === ($color = $this->allocateColor($color))) {
89
+				return false;
90
+			}
71 91
 
72
-			for ($x = 0; $x < $this->width; $x++) for ($y = 0; $y < $this->height; $y++) {
92
+			for ($x = 0; $x < $this->width; $x++) {
93
+				for ($y = 0;
94
+			}
95
+			$y < $this->height; $y++) {
73 96
 
74
-				if (random_int(1, $rate) === 1) imagesetpixel($this->image, $x, $y, $color);
97
+				if (random_int(1, $rate) === 1) {
98
+					imagesetpixel($this->image, $x, $y, $color);
99
+				}
75 100
 			}
76 101
 
77 102
 			# ------------------------
@@ -83,9 +108,13 @@  discard block
 block discarded – undo
83 108
 
84 109
 		public function lines(int $count, array $color = null) {
85 110
 
86
-			if (!is_resource($this->image)) return false;
111
+			if (!is_resource($this->image)) {
112
+				return false;
113
+			}
87 114
 
88
-			if (false === ($color = $this->allocateColor($color))) return false;
115
+			if (false === ($color = $this->allocateColor($color))) {
116
+				return false;
117
+			}
89 118
 
90 119
 			for ($i = 0; $i < $count; $i++) {
91 120
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Utils/View.php 1 patch
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.
www/engine/System/Classes/Views/View.php 1 patch
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.
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   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 	                                               '<p>Ea mea tantas delenit, ut usu alii commune. ' .
91 91
 	                                               'Te vix decore dolore scribentur. Ad pri malis invidunt ullamcorper, ' .
92 92
 	                                               'qui eu laboramus vulputate scriptorem, id veri audiam integre pro. ' .
93
-	                                               'Saperet luptatum recusabo quo cu, ' .'vix facer dolores persecuti no. ' .
93
+	                                               'Saperet luptatum recusabo quo cu, ' . 'vix facer dolores persecuti no. ' .
94 94
 	                                               'Eos id omnes affert possim. Vix id commune urbanitas.</p>' .
95 95
 
96 96
 	                                               '<p>Cu eum quod prodesset, vix sale democritum delicatissimi et, ' .
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
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 
66 66
 	'DASHBOARD_MESSAGE_INSTALL_FILE'            => 'Інсталяційний файл <a href="$install_path$/install.php" target="_blank">install.php</a> ' .
67 67
 	                                               'досі знаходиться в кореневій директорії сайта. Необхідно видалити його.',
68
-	'DASHBOARD_MESSAGE_CONFIG_FILE'             => 'Схоже, Ви поки не редагували конфігурацію сайта. '.
68
+	'DASHBOARD_MESSAGE_CONFIG_FILE'             => 'Схоже, Ви поки не редагували конфігурацію сайта. ' .
69 69
 	                                               'Перейдіть на <a href="$install_path$/admin/system/settings">сторінку налаштувань</a> для введення актуальних значень.',
70 70
 
71 71
 	# Pages
Please login to merge, or discard this patch.
www/engine/System/Languages/en-US/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'                  => 'Home',
59 59
 
60 60
 	'INSTALL_PAGE_INDEX_CONTENTS'               => '<h2>Welcome!</h2>' .
61
-	                                               '<p>This is demo site, powered by <strong>Cadmium CMS</strong>.</p>' .
62
-	                                               '<p>You can log into admin panel by following <a href="$install_path$/admin">this link</a>.</p>' .
63
-	                                               '<h2>See also</h2>' .
64
-	                                               '<ul><li><a href="http://cadmium-cms.com" target="_blank">Official website</a></li>' .
65
-	                                               '<li><a href="https://github.com/cadmium-org/cadmium-cms" target="_blank">GitHub project page</a></ul>',
61
+												   '<p>This is demo site, powered by <strong>Cadmium CMS</strong>.</p>' .
62
+												   '<p>You can log into admin panel by following <a href="$install_path$/admin">this link</a>.</p>' .
63
+												   '<h2>See also</h2>' .
64
+												   '<ul><li><a href="http://cadmium-cms.com" target="_blank">Official website</a></li>' .
65
+												   '<li><a href="https://github.com/cadmium-org/cadmium-cms" target="_blank">GitHub project page</a></ul>',
66 66
 
67 67
 	'INSTALL_PAGE_DEMO_TITLE'                   => 'Page',
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   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 	                                               '<p>Ea mea tantas delenit, ut usu alii commune. ' .
91 91
 	                                               'Te vix decore dolore scribentur. Ad pri malis invidunt ullamcorper, ' .
92 92
 	                                               'qui eu laboramus vulputate scriptorem, id veri audiam integre pro. ' .
93
-	                                               'Saperet luptatum recusabo quo cu, ' .'vix facer dolores persecuti no. ' .
93
+	                                               'Saperet luptatum recusabo quo cu, ' . 'vix facer dolores persecuti no. ' .
94 94
 	                                               'Eos id omnes affert possim. Vix id commune urbanitas.</p>' .
95 95
 
96 96
 	                                               '<p>Cu eum quod prodesset, vix sale democritum delicatissimi et, ' .
Please login to merge, or discard this patch.