Completed
Push — master ( 1e9202...f0dd54 )
by Jacob
03:07
created
controller/blog/CategoryController.class.inc.php 1 patch
Braces   +15 added lines, -14 removed lines patch added patch discarded remove patch
@@ -74,8 +74,7 @@  discard block
 block discarded – undo
74 74
 				{
75 75
 					$this->set_title(self::$TITLE_MAIN_HIKING);
76 76
 					$this->set_description(self::$DESCRIPTION_MAIN_HIKING);
77
-				}
78
-				else
77
+				} else
79 78
 				{
80 79
 					$this->set_title(sprintf(self::$TITLE_PAGINATED_HIKING, $this->page, $this->total_pages));
81 80
 					$this->set_description(sprintf(self::$DESCRIPTION_PAGINATED_HIKING, $this->page, $this->total_pages));
@@ -87,8 +86,7 @@  discard block
 block discarded – undo
87 86
 				{
88 87
 					$this->set_title(self::$TITLE_MAIN_PERSONAL);
89 88
 					$this->set_description(self::$DESCRIPTION_MAIN_PERSONAL);
90
-				}
91
-				else
89
+				} else
92 90
 				{
93 91
 					$this->set_title(sprintf(self::$TITLE_PAGINATED_PERSONAL, $this->page, $this->total_pages));
94 92
 					$this->set_description(sprintf(self::$DESCRIPTION_PAGINATED_PERSONAL, $this->page, $this->total_pages));
@@ -100,8 +98,7 @@  discard block
 block discarded – undo
100 98
 				{
101 99
 					$this->set_title(self::$TITLE_MAIN_WEBDEVELOPMENT);
102 100
 					$this->set_description(self::$DESCRIPTION_MAIN_WEBDEVELOPMENT);
103
-				}
104
-				else
101
+				} else
105 102
 				{
106 103
 					$this->set_title(sprintf(self::$TITLE_PAGINATED_WEBDEVELOPMENT, $this->page, $this->total_pages));
107 104
 					$this->set_description(sprintf(self::$DESCRIPTION_PAGINATED_WEBDEVELOPMENT, $this->page, $this->total_pages));
@@ -134,8 +131,9 @@  discard block
 block discarded – undo
134 131
 	protected function get_page_number()
135 132
 	{
136 133
 		$page = URLDecode::getPiece(2);
137
-		if(isset($page) && is_numeric($page))
138
-			return $page;
134
+		if(isset($page) && is_numeric($page)) {
135
+					return $page;
136
+		}
139 137
 		return 1;
140 138
 	}
141 139
 
@@ -156,17 +154,20 @@  discard block
 block discarded – undo
156 154
 
157 155
 	protected function get_list_next_link()
158 156
 	{
159
-		if($this->page == 1)
160
-			return;
161
-		if($this->page == 2)
162
-			return Content::instance('URLSafe', "/{$this->category->link}/")->activate();
157
+		if($this->page == 1) {
158
+					return;
159
+		}
160
+		if($this->page == 2) {
161
+					return Content::instance('URLSafe', "/{$this->category->link}/")->activate();
162
+		}
163 163
 		return Content::instance('URLSafe', "/{$this->category->link}/" . ($this->page - 1) . '/')->activate();
164 164
 	}
165 165
 
166 166
 	protected function get_list_prev_link()
167 167
 	{
168
-		if(($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count())
169
-			return;
168
+		if(($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count()) {
169
+					return;
170
+		}
170 171
 		return Content::instance('URLSafe', "/{$this->category->link}/" . ($this->page + 1) . '/')->activate();
171 172
 	}
172 173
 
Please login to merge, or discard this patch.
controller/blog/DefaultPageController.class.inc.php 1 patch
Braces   +12 added lines, -8 removed lines patch added patch discarded remove patch
@@ -41,8 +41,9 @@  discard block
 block discarded – undo
41 41
 		Loader::load('collector', 'image/PhotoCollector');
42 42
 		$photo_result = PhotoCollector::getRow($id);
43 43
 		
44
-		if($photo_result == null)
45
-			return;
44
+		if($photo_result == null) {
45
+					return;
46
+		}
46 47
 		
47 48
 		$name = $photo_result->name;
48 49
 		$category = $photo_result->category;
@@ -106,8 +107,9 @@  discard block
 block discarded – undo
106 107
 	{
107 108
 		$body = $post['body'];
108 109
 		
109
-		if($trim)
110
-			$body = Content::instance('SmartTrim', $body)->activate(self::$LENGTH_OF_TRIMMED_POST);
110
+		if($trim) {
111
+					$body = Content::instance('SmartTrim', $body)->activate(self::$LENGTH_OF_TRIMMED_POST);
112
+		}
111 113
 		
112 114
 		$body = Content::instance('FixPhoto', $body)->activate(false, 'standard');
113 115
 		$body = Content::instance('MarkupCode', $body)->activate();
@@ -134,8 +136,9 @@  discard block
 block discarded – undo
134 136
 		$cloud_array = array();
135 137
 		foreach($tag_result as $tag)
136 138
 		{
137
-			if($tag['count'] < self::$MINIMUM_TAG_COUNT)
138
-				continue;
139
+			if($tag['count'] < self::$MINIMUM_TAG_COUNT) {
140
+							continue;
141
+			}
139 142
 			
140 143
 			$tag_object = new stdclass();
141 144
 			$tag_object->name = $tag['tag'];
@@ -153,8 +156,9 @@  discard block
 block discarded – undo
153 156
 		
154 157
 		foreach($tag_result as $tag)
155 158
 		{
156
-			if($tag['count'] > $maximum)
157
-				$maximum = $tag['count'];
159
+			if($tag['count'] > $maximum) {
160
+							$maximum = $tag['count'];
161
+			}
158 162
 		}
159 163
 		return $maximum;
160 164
 	}
Please login to merge, or discard this patch.
controller/PageController.class.inc.php 1 patch
Braces   +37 added lines, -27 removed lines patch added patch discarded remove patch
@@ -102,10 +102,11 @@  discard block
 block discarded – undo
102 102
 		Loader::load('view', '/Head', $this->data_array['head']);
103 103
 		foreach($this->body_view_array as $view)
104 104
 		{
105
-			if(substr($view, 0, 1) == '/')
106
-				Loader::load('view', $view, $this->data_array['body']);
107
-			else
108
-				Loader::load('view', URLDecode::getSite() . '/' . $view, $this->data_array['body']);
105
+			if(substr($view, 0, 1) == '/') {
106
+							Loader::load('view', $view, $this->data_array['body']);
107
+			} else {
108
+							Loader::load('view', URLDecode::getSite() . '/' . $view, $this->data_array['body']);
109
+			}
109 110
 		}
110 111
         
111 112
         if (URLDecode::getSite() == 'waterfalls') {
@@ -114,8 +115,9 @@  discard block
 block discarded – undo
114 115
             Loader::load('view', '/Foot', array('tracking_code' => self::$TRACKING_CODE));
115 116
         }
116 117
 		
117
-		if($view == '/404' || $view == '/503')
118
-			exit;
118
+		if($view == '/404' || $view == '/503') {
119
+					exit;
120
+		}
119 121
 	}
120 122
 
121 123
 	protected function set_header_method($method)
@@ -195,14 +197,16 @@  discard block
 block discarded – undo
195 197
 
196 198
 	protected function eject()
197 199
 	{
198
-		if(get_class($this) !== 'Error404Controller')
199
-			Loader::loadNew('controller', '/Error404Controller')->activate();
200
+		if(get_class($this) !== 'Error404Controller') {
201
+					Loader::loadNew('controller', '/Error404Controller')->activate();
202
+		}
200 203
 	}
201 204
 
202 205
 	protected function unavailable()
203 206
 	{
204
-		if(get_class($this) !== 'Error503Controller')
205
-			Loader::loadNew('controller', '/Error503Controller')->activate();
207
+		if(get_class($this) !== 'Error503Controller') {
208
+					Loader::loadNew('controller', '/Error503Controller')->activate();
209
+		}
206 210
 	}
207 211
 
208 212
 	protected function redirect($uri, $method = 301)
@@ -210,12 +214,14 @@  discard block
 block discarded – undo
210 214
 		switch($method)
211 215
 		{
212 216
 			case 301 :
213
-				if(get_class($this) !== 'Error301Controller')
214
-					Loader::loadNew('controller', '/Error301Controller', array($uri))->activate();
217
+				if(get_class($this) !== 'Error301Controller') {
218
+									Loader::loadNew('controller', '/Error301Controller', array($uri))->activate();
219
+				}
215 220
 				break;
216 221
 			case 303 :
217
-				if(get_class($this) !== 'Error303Controller')
218
-					Loader::loadNew('controller', '/Error303Controller', array($uri))->activate();
222
+				if(get_class($this) !== 'Error303Controller') {
223
+									Loader::loadNew('controller', '/Error303Controller', array($uri))->activate();
224
+				}
219 225
 				break;
220 226
 		}
221 227
 	}
@@ -262,18 +268,19 @@  discard block
 block discarded – undo
262 268
 			$comment_object->url = $comment->url;
263 269
 			$comment_object->trusted = $comment->trusted;
264 270
 			
265
-			if($comment->reply == 0 && Request::getPost('type') == $comment->id)
266
-				$comment_object->errors = $this->comment_errors;
267
-			else
268
-				$comment_object->errors = array();
271
+			if($comment->reply == 0 && Request::getPost('type') == $comment->id) {
272
+							$comment_object->errors = $this->comment_errors;
273
+			} else {
274
+							$comment_object->errors = array();
275
+			}
269 276
 			
270 277
 			if($comment->reply == 0)
271 278
 			{
272 279
 				$comment_object->replies = array();
273 280
 				$comment_array[$comment->id] = $comment_object;
274
-			}
275
-			else
276
-				$comment_array[$comment->reply]->replies[$comment->id] = $comment_object;
281
+			} else {
282
+							$comment_array[$comment->reply]->replies[$comment->id] = $comment_object;
283
+			}
277 284
 		}
278 285
 		
279 286
 		$comment_count = CommentCollector::getCommentCountForURL($site, $path);
@@ -302,16 +309,19 @@  discard block
 block discarded – undo
302 309
 
303 310
 		$commenter_cookie_value = json_decode($_COOKIE['commenter']);
304 311
 		
305
-		if($commenter_cookie_value === NULL)
306
-			return $commenter;
312
+		if($commenter_cookie_value === NULL) {
313
+					return $commenter;
314
+		}
307 315
 		
308
-		if(!isset($commenter_cookie_value->name) || !isset($commenter_cookie_value->email))
309
-			return $commenter;
316
+		if(!isset($commenter_cookie_value->name) || !isset($commenter_cookie_value->email)) {
317
+					return $commenter;
318
+		}
310 319
 		
311 320
 		$commenter_object = CommentCollector::getCommenterByFields($commenter_cookie_value->name, $commenter_cookie_value->email, (isset($commenter_cookie_value->website) ? $commenter_cookie_value->website : ''));
312 321
 		
313
-		if($commenter_object === NULL)
314
-			return $commenter;
322
+		if($commenter_object === NULL) {
323
+					return $commenter;
324
+		}
315 325
 		
316 326
 		$commenter->id = $commenter_object->id;
317 327
 		$commenter->name = $commenter_object->name;
Please login to merge, or discard this patch.