Completed
Push — master ( 8217f0...2b6325 )
by Nazar
04:34
created
components/modules/Blogs/Posts.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 	use
25 25
 		CRUD,
26 26
 		Singleton;
27
-	protected $data_model                  = [
27
+	protected $data_model = [
28 28
 		'id'      => 'int:0',
29 29
 		'user'    => 'int:0',
30 30
 		'date'    => 'int:0',
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 						FROM `$this->table_sections`
85 85
 						WHERE `id` = $id"
86 86
 					);
87
-					$data['tags']          = $this->db()->qfas(
87
+					$data['tags'] = $this->db()->qfas(
88 88
 						"SELECT DISTINCT `tag`
89 89
 						FROM `$this->table_tags`
90 90
 						WHERE
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 							`lang`	= '$L->clang'"
93 93
 					);
94 94
 					if (!$data['tags']) {
95
-						$l            = $this->db()->qfs(
95
+						$l = $this->db()->qfs(
96 96
 							"SELECT `lang`
97 97
 							FROM `$this->table_tags`
98 98
 							WHERE `id` = $id
Please login to merge, or discard this patch.
components/modules/Polls/Answers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 		'option' => 'int',
28 28
 		'user'   => 'int'
29 29
 	];
30
-	protected $table      = '[prefix]polls_options_answers';
30
+	protected $table = '[prefix]polls_options_answers';
31 31
 
32 32
 	protected function cdb () {
33 33
 		return Config::instance()->module('Polls')->db('polls');
Please login to merge, or discard this patch.