GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — develop ( 594959...601687 )
by gyeong-won
08:31
created
modules/spamfilter/spamfilter.admin.view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 		// Get configurations (using module model object)
60 60
 		$oModuleModel = getModel('module');
61 61
 		$config = $oModuleModel->getModuleConfig('spamfilter');
62
-		Context::set('config',$config);
62
+		Context::set('config', $config);
63 63
 
64 64
 		$this->setTemplateFile('config_block');
65 65
 	}
Please login to merge, or discard this patch.
modules/message/message.admin.view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
 		// Get configurations (using module model object)
32 32
 		$config = $oModuleModel->getModuleConfig('message');
33
-		Context::set('config',$config);
33
+		Context::set('config', $config);
34 34
 
35 35
 		// Set a template file
36 36
 		$this->setTemplatePath($this->module_path.'tpl');
Please login to merge, or discard this patch.
modules/comment/comment.item.php 2 patches
Braces   +17 added lines, -9 removed lines patch added patch discarded remove patch
@@ -333,8 +333,7 @@  discard block
 block discarded – undo
333 333
 					'<!--BeforeComment(%d,%d)--><div class="comment_%d_%d xe_content">%s</div><!--AfterComment(%d,%d)-->', $this->comment_srl, $memberSrl, $this->comment_srl, $memberSrl, $content, $this->comment_srl, $memberSrl
334 334
 			);
335 335
 			// xe_content class name should be specified although content access is not necessary.
336
-		}
337
-		else
336
+		} else
338 337
 		{
339 338
 			if($add_xe_content_class)
340 339
 			{
@@ -569,7 +568,9 @@  discard block
 block discarded – undo
569 568
 				}
570 569
 			}
571 570
 
572
-			if(!preg_match("!<img!is", $content)) return;
571
+			if(!preg_match("!<img!is", $content)) {
572
+				return;
573
+			}
573 574
 		}
574 575
 
575 576
 		// get thumbail generation info on the doc module configuration.
@@ -589,8 +590,7 @@  discard block
 block discarded – undo
589 590
 			if(filesize($thumbnail_file) < 1)
590 591
 			{
591 592
 				return FALSE;
592
-			}
593
-			else
593
+			} else
594 594
 			{
595 595
 				return $thumbnail_url;
596 596
 			}
@@ -608,7 +608,9 @@  discard block
 block discarded – undo
608 608
 			$first_image = null;
609 609
 			foreach($file_list as $file)
610 610
 			{
611
-				if($file->direct_download !== 'Y') continue;
611
+				if($file->direct_download !== 'Y') {
612
+					continue;
613
+				}
612 614
 
613 615
 				if($file->cover_image === 'Y' && file_exists($file->uploaded_filename))
614 616
 				{
@@ -616,7 +618,9 @@  discard block
 block discarded – undo
616 618
 					break;
617 619
 				}
618 620
 
619
-				if($first_image) continue;
621
+				if($first_image) {
622
+					continue;
623
+				}
620 624
 
621 625
 				if(preg_match("/\.(jpe?g|png|gif|bmp)$/i", $file->source_filename))
622 626
 				{
@@ -644,7 +648,9 @@  discard block
 block discarded – undo
644 648
 			foreach($matches as $target_image)
645 649
 			{
646 650
 				$target_src = trim($target_image[1]);
647
-				if(preg_match('/\/(common|modules|widgets|addons|layouts|m\.layouts)\//i', $target_src)) continue;
651
+				if(preg_match('/\/(common|modules|widgets|addons|layouts|m\.layouts)\//i', $target_src)) {
652
+					continue;
653
+				}
648 654
 
649 655
 				if(!preg_match('/^(http|https):\/\//i',$target_src))
650 656
 				{
@@ -655,7 +661,9 @@  discard block
 block discarded – undo
655 661
 
656 662
 				$tmp_file = _XE_PATH_ . 'files/cache/tmp/' . $random->createSecureSalt(32, 'hex');
657 663
 				FileHandler::getRemoteFile($target_src, $tmp_file);
658
-				if(!file_exists($tmp_file)) continue;
664
+				if(!file_exists($tmp_file)) {
665
+					continue;
666
+				}
659 667
 
660 668
 				$imageinfo = getimagesize($tmp_file);
661 669
 				list($_w, $_h) = $imageinfo;
Please login to merge, or discard this patch.
Spacing   +73 added lines, -73 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	 */
50 50
 	function _loadFromDB()
51 51
 	{
52
-		if(!$this->comment_srl)
52
+		if (!$this->comment_srl)
53 53
 		{
54 54
 			return;
55 55
 		}
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 	 */
68 68
 	function setAttribute($attribute)
69 69
 	{
70
-		if(!$attribute->comment_srl)
70
+		if (!$attribute->comment_srl)
71 71
 		{
72 72
 			$this->comment_srl = NULL;
73 73
 			return;
@@ -77,9 +77,9 @@  discard block
 block discarded – undo
77 77
 		$this->adds($attribute);
78 78
 
79 79
 		// define vars on the object for backward compatibility of skins
80
-		if(count($attribute))
80
+		if (count($attribute))
81 81
 		{
82
-			foreach($attribute as $key => $val)
82
+			foreach ($attribute as $key => $val)
83 83
 			{
84 84
 				$this->{$key} = $val;
85 85
 			}
@@ -93,29 +93,29 @@  discard block
 block discarded – undo
93 93
 
94 94
 	function isGranted()
95 95
 	{
96
-		if($_SESSION['own_comment'][$this->comment_srl])
96
+		if ($_SESSION['own_comment'][$this->comment_srl])
97 97
 		{
98 98
 			return TRUE;
99 99
 		}
100 100
 
101
-		if(!Context::get('is_logged'))
101
+		if (!Context::get('is_logged'))
102 102
 		{
103 103
 			return FALSE;
104 104
 		}
105 105
 
106 106
 		$logged_info = Context::get('logged_info');
107
-		if($logged_info->is_admin == 'Y')
107
+		if ($logged_info->is_admin == 'Y')
108 108
 		{
109 109
 			return TRUE;
110 110
 		}
111 111
 
112 112
 		$grant = Context::get('grant');
113
-		if($grant->manager)
113
+		if ($grant->manager)
114 114
 		{
115 115
 			return TRUE;
116 116
 		}
117 117
 
118
-		if($this->get('member_srl') && ($this->get('member_srl') == $logged_info->member_srl || $this->get('member_srl') * -1 == $logged_info->member_srl))
118
+		if ($this->get('member_srl') && ($this->get('member_srl') == $logged_info->member_srl || $this->get('member_srl') * -1 == $logged_info->member_srl))
119 119
 		{
120 120
 			return TRUE;
121 121
 		}
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 
137 137
 	function isEditable()
138 138
 	{
139
-		if($this->isGranted() || !$this->get('member_srl'))
139
+		if ($this->isGranted() || !$this->get('member_srl'))
140 140
 		{
141 141
 			return TRUE;
142 142
 		}
@@ -150,12 +150,12 @@  discard block
 block discarded – undo
150 150
 
151 151
 	function isAccessible()
152 152
 	{
153
-		if($_SESSION['accessibled_comment'][$this->comment_srl])
153
+		if ($_SESSION['accessibled_comment'][$this->comment_srl])
154 154
 		{
155 155
 			return TRUE;
156 156
 		}
157 157
 
158
-		if($this->isGranted() || !$this->isSecret())
158
+		if ($this->isGranted() || !$this->isSecret())
159 159
 		{
160 160
 			$this->setAccessible();
161 161
 			return TRUE;
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 
164 164
 		$oDocumentModel = getModel('document');
165 165
 		$oDocument = $oDocumentModel->getDocument($this->get('document_srl'));
166
-		if($oDocument->isGranted())
166
+		if ($oDocument->isGranted())
167 167
 		{
168 168
 			$this->setAccessible();
169 169
 			return TRUE;
@@ -184,20 +184,20 @@  discard block
 block discarded – undo
184 184
 	function notify($type, $content)
185 185
 	{
186 186
 		// return if not useNotify
187
-		if(!$this->useNotify())
187
+		if (!$this->useNotify())
188 188
 		{
189 189
 			return;
190 190
 		}
191 191
 
192 192
 		// pass if the author is not logged-in user 
193
-		if(!$this->get('member_srl'))
193
+		if (!$this->get('member_srl'))
194 194
 		{
195 195
 			return;
196 196
 		}
197 197
 
198 198
 		// return if the currently logged-in user is an author of the comment.
199 199
 		$logged_info = Context::get('logged_info');
200
-		if($logged_info->member_srl == $this->get('member_srl'))
200
+		if ($logged_info->member_srl == $this->get('member_srl'))
201 201
 		{
202 202
 			return;
203 203
 		}
@@ -207,9 +207,9 @@  discard block
 block discarded – undo
207 207
 		$oDocument = $oDocumentModel->getDocument($this->get('document_srl'));
208 208
 
209 209
 		// Variables
210
-		if($type)
210
+		if ($type)
211 211
 		{
212
-			$title = "[" . $type . "] ";
212
+			$title = "[".$type."] ";
213 213
 		}
214 214
 
215 215
 		$title .= cut_str(strip_tags($content), 30, '...');
@@ -224,17 +224,17 @@  discard block
 block discarded – undo
224 224
 
225 225
 	function getIpAddress()
226 226
 	{
227
-		if($this->isGranted())
227
+		if ($this->isGranted())
228 228
 		{
229 229
 			return $this->get('ipaddress');
230 230
 		}
231 231
 
232
-		return '*' . strstr($this->get('ipaddress'), '.');
232
+		return '*'.strstr($this->get('ipaddress'), '.');
233 233
 	}
234 234
 
235 235
 	function isExistsHomepage()
236 236
 	{
237
-		if(trim($this->get('homepage')))
237
+		if (trim($this->get('homepage')))
238 238
 		{
239 239
 			return TRUE;
240 240
 		}
@@ -245,14 +245,14 @@  discard block
 block discarded – undo
245 245
 	function getHomepageUrl()
246 246
 	{
247 247
 		$url = trim($this->get('homepage'));
248
-		if(!$url)
248
+		if (!$url)
249 249
 		{
250 250
 			return;
251 251
 		}
252 252
 
253
-		if(strncasecmp('http://', $url, 7) !== 0)
253
+		if (strncasecmp('http://', $url, 7) !== 0)
254 254
 		{
255
-			$url = "http://" . $url;
255
+			$url = "http://".$url;
256 256
 		}
257 257
 
258 258
 		return htmlspecialchars($url, ENT_COMPAT | ENT_HTML401, 'UTF-8', false);
@@ -284,14 +284,14 @@  discard block
 block discarded – undo
284 284
 	 */
285 285
 	function getContentText($strlen = 0)
286 286
 	{
287
-		if($this->isSecret() && !$this->isAccessible())
287
+		if ($this->isSecret() && !$this->isAccessible())
288 288
 		{
289 289
 			return Context::getLang('msg_is_secret');
290 290
 		}
291 291
 
292 292
 		$content = $this->get('content');
293 293
 
294
-		if($strlen)
294
+		if ($strlen)
295 295
 		{
296 296
 			return cut_str(strip_tags($content), $strlen, '...');
297 297
 		}
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
 	 */
306 306
 	function getContent($add_popup_menu = TRUE, $add_content_info = TRUE, $add_xe_content_class = TRUE)
307 307
 	{
308
-		if($this->isSecret() && !$this->isAccessible())
308
+		if ($this->isSecret() && !$this->isAccessible())
309 309
 		{
310 310
 			return Context::getLang('msg_is_secret');
311 311
 		}
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
 		stripEmbedTagForAdmin($content, $this->get('member_srl'));
315 315
 
316 316
 		// when displaying the comment on the pop-up menu
317
-		if($add_popup_menu && Context::get('is_logged'))
317
+		if ($add_popup_menu && Context::get('is_logged'))
318 318
 		{
319 319
 			$content = sprintf(
320 320
 					'%s<div class="comment_popup_menu"><a href="#popup_menu_area" class="comment_%d" onclick="return false">%s</a></div>', $content, $this->comment_srl, Context::getLang('cmd_comment_do')
@@ -322,10 +322,10 @@  discard block
 block discarded – undo
322 322
 		}
323 323
 
324 324
 		// if additional information which can access contents is set
325
-		if($add_content_info)
325
+		if ($add_content_info)
326 326
 		{
327 327
 			$memberSrl = $this->get('member_srl');
328
-			if($memberSrl < 0)
328
+			if ($memberSrl < 0)
329 329
 			{
330 330
 				$memberSrl = 0;
331 331
 			}
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
 		}
337 337
 		else
338 338
 		{
339
-			if($add_xe_content_class)
339
+			if ($add_xe_content_class)
340 340
 			{
341 341
 				$content = sprintf('<div class="xe_content">%s</div>', $content);
342 342
 			}
@@ -396,7 +396,7 @@  discard block
 block discarded – undo
396 396
 
397 397
 	function getRegdateGM()
398 398
 	{
399
-		return $this->getRegdate('D, d M Y H:i:s') . ' ' . $GLOBALS['_time_zone'];
399
+		return $this->getRegdate('D, d M Y H:i:s').' '.$GLOBALS['_time_zone'];
400 400
 	}
401 401
 
402 402
 	function getUpdate($format = 'Y.m.d H:i:s')
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
 
407 407
 	function getPermanentUrl()
408 408
 	{
409
-		return getFullUrl('', 'mid', $this->getCommentMid(), 'document_srl', $this->get('document_srl')) . '#comment_' . $this->get('comment_srl');
409
+		return getFullUrl('', 'mid', $this->getCommentMid(), 'document_srl', $this->get('document_srl')).'#comment_'.$this->get('comment_srl');
410 410
 	}
411 411
 
412 412
 	function getUpdateTime()
@@ -427,7 +427,7 @@  discard block
 block discarded – undo
427 427
 
428 428
 	function hasUploadedFiles()
429 429
 	{
430
-		if(($this->isSecret() && !$this->isAccessible()) && !$this->isGranted())
430
+		if (($this->isSecret() && !$this->isAccessible()) && !$this->isGranted())
431 431
 		{
432 432
 			return FALSE;
433 433
 		}
@@ -436,12 +436,12 @@  discard block
 block discarded – undo
436 436
 
437 437
 	function getUploadedFiles()
438 438
 	{
439
-		if(($this->isSecret() && !$this->isAccessible()) && !$this->isGranted())
439
+		if (($this->isSecret() && !$this->isAccessible()) && !$this->isGranted())
440 440
 		{
441 441
 			return;
442 442
 		}
443 443
 
444
-		if(!$this->get('uploaded_count'))
444
+		if (!$this->get('uploaded_count'))
445 445
 		{
446 446
 			return;
447 447
 		}
@@ -458,7 +458,7 @@  discard block
 block discarded – undo
458 458
 	function getEditor()
459 459
 	{
460 460
 		$module_srl = $this->get('module_srl');
461
-		if(!$module_srl)
461
+		if (!$module_srl)
462 462
 		{
463 463
 			$module_srl = Context::get('module_srl');
464 464
 		}
@@ -472,13 +472,13 @@  discard block
 block discarded – undo
472 472
 	 */
473 473
 	function getProfileImage()
474 474
 	{
475
-		if(!$this->isExists() || !$this->get('member_srl'))
475
+		if (!$this->isExists() || !$this->get('member_srl'))
476 476
 		{
477 477
 			return;
478 478
 		}
479 479
 		$oMemberModel = getModel('member');
480 480
 		$profile_info = $oMemberModel->getProfileImage($this->get('member_srl'));
481
-		if(!$profile_info)
481
+		if (!$profile_info)
482 482
 		{
483 483
 			return;
484 484
 		}
@@ -493,7 +493,7 @@  discard block
 block discarded – undo
493 493
 	function getSignature()
494 494
 	{
495 495
 		// pass if the posting not exists.
496
-		if(!$this->isExists() || !$this->get('member_srl'))
496
+		if (!$this->isExists() || !$this->get('member_srl'))
497 497
 		{
498 498
 			return;
499 499
 		}
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
 		$signature = $oMemberModel->getSignature($this->get('member_srl'));
504 504
 
505 505
 		// check if max height of the signiture is specified on the member module
506
-		if(!isset($GLOBALS['__member_signature_max_height']))
506
+		if (!isset($GLOBALS['__member_signature_max_height']))
507 507
 		{
508 508
 			$oModuleModel = getModel('module');
509 509
 			$member_config = $oModuleModel->getModuleConfig('member');
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
 
513 513
 		$max_signature_height = $GLOBALS['__member_signature_max_height'];
514 514
 
515
-		if($max_signature_height)
515
+		if ($max_signature_height)
516 516
 		{
517 517
 			$signature = sprintf('<div style="max-height:%dpx;overflow:auto;overflow-x:hidden;height:expression(this.scrollHeight > %d ? \'%dpx\': \'auto\')">%s</div>', $max_signature_height, $max_signature_height, $max_signature_height, $signature);
518 518
 		}
@@ -522,12 +522,12 @@  discard block
 block discarded – undo
522 522
 
523 523
 	function thumbnailExists($width = 80, $height = 0, $type = '')
524 524
 	{
525
-		if(!$this->comment_srl)
525
+		if (!$this->comment_srl)
526 526
 		{
527 527
 			return FALSE;
528 528
 		}
529 529
 
530
-		if(!$this->getThumbnail($width, $height, $type))
530
+		if (!$this->getThumbnail($width, $height, $type))
531 531
 		{
532 532
 			return FALSE;
533 533
 		}
@@ -538,42 +538,42 @@  discard block
 block discarded – undo
538 538
 	function getThumbnail($width = 80, $height = 0, $thumbnail_type = '')
539 539
 	{
540 540
 		// return false if no doc exists
541
-		if(!$this->comment_srl)
541
+		if (!$this->comment_srl)
542 542
 		{
543 543
 			return;
544 544
 		}
545 545
 
546
-		if($this->isSecret() && !$this->isGranted())
546
+		if ($this->isSecret() && !$this->isGranted())
547 547
 		{
548 548
 			return;
549 549
 		}
550 550
 
551 551
 		// If signiture height setting is omitted, create a square
552
-		if(!$height)
552
+		if (!$height)
553 553
 		{
554 554
 			$height = $width;
555 555
 		}
556 556
 
557 557
 		$content = $this->get('content');
558
-		if(!$this->hasUploadedFiles())
558
+		if (!$this->hasUploadedFiles())
559 559
 		{
560
-			if(!$content)
560
+			if (!$content)
561 561
 			{
562 562
 				$args = new stdClass();
563 563
 				$args->comment_srl = $this->comment_srl;
564 564
 				$output = executeQuery('document.getComment', $args, array('content'));
565
-				if($output->toBool() && $output->data)
565
+				if ($output->toBool() && $output->data)
566 566
 				{
567 567
 					$content = $output->data->content;
568 568
 					$this->add('content', $content);
569 569
 				}
570 570
 			}
571 571
 
572
-			if(!preg_match("!<img!is", $content)) return;
572
+			if (!preg_match("!<img!is", $content)) return;
573 573
 		}
574 574
 
575 575
 		// get thumbail generation info on the doc module configuration.
576
-		if(!in_array($thumbnail_type, array('crop', 'ratio')))
576
+		if (!in_array($thumbnail_type, array('crop', 'ratio')))
577 577
 		{
578 578
 			$thumbnail_type = 'crop';
579 579
 		}
@@ -582,12 +582,12 @@  discard block
 block discarded – undo
582 582
 		$thumbnail_path = sprintf('files/thumbnails/%s', getNumberingPath($this->comment_srl, 3));
583 583
 		$thumbnail_file = sprintf('%s%dx%d.%s.jpg', $thumbnail_path, $width, $height, $thumbnail_type);
584 584
 		$thumbnail_lockfile = sprintf('%s%dx%d.%s.lock', $thumbnail_path, $width, $height, $thumbnail_type);
585
-		$thumbnail_url = Context::getRequestUri() . $thumbnail_file;
585
+		$thumbnail_url = Context::getRequestUri().$thumbnail_file;
586 586
 
587 587
 		// return false if a size of existing thumbnail file is 0. otherwise return the file path
588
-		if(file_exists($thumbnail_file) || file_exists($thumbnail_lockfile))
588
+		if (file_exists($thumbnail_file) || file_exists($thumbnail_lockfile))
589 589
 		{
590
-			if(filesize($thumbnail_file) < 1)
590
+			if (filesize($thumbnail_file) < 1)
591 591
 			{
592 592
 				return FALSE;
593 593
 			}
@@ -605,33 +605,33 @@  discard block
 block discarded – undo
605 605
 		$is_tmp_file = FALSE;
606 606
 
607 607
 		// find an image file among attached files
608
-		if($this->hasUploadedFiles())
608
+		if ($this->hasUploadedFiles())
609 609
 		{
610 610
 			$file_list = $this->getUploadedFiles();
611 611
 
612 612
 			$first_image = null;
613
-			foreach($file_list as $file)
613
+			foreach ($file_list as $file)
614 614
 			{
615
-				if($file->direct_download !== 'Y') continue;
615
+				if ($file->direct_download !== 'Y') continue;
616 616
 
617
-				if($file->cover_image === 'Y' && file_exists($file->uploaded_filename))
617
+				if ($file->cover_image === 'Y' && file_exists($file->uploaded_filename))
618 618
 				{
619 619
 					$source_file = $file->uploaded_filename;
620 620
 					break;
621 621
 				}
622 622
 
623
-				if($first_image) continue;
623
+				if ($first_image) continue;
624 624
 
625
-				if(preg_match("/\.(jpe?g|png|gif|bmp)$/i", $file->source_filename))
625
+				if (preg_match("/\.(jpe?g|png|gif|bmp)$/i", $file->source_filename))
626 626
 				{
627
-					if(file_exists($file->uploaded_filename))
627
+					if (file_exists($file->uploaded_filename))
628 628
 					{
629 629
 						$first_image = $file->uploaded_filename;
630 630
 					}
631 631
 				}
632 632
 			}
633 633
 
634
-			if(!$source_file && $first_image)
634
+			if (!$source_file && $first_image)
635 635
 			{
636 636
 				$source_file = $first_image;
637 637
 			}
@@ -639,31 +639,31 @@  discard block
 block discarded – undo
639 639
 
640 640
 		// get an image file from the doc content if no file attached. 
641 641
 		$is_tmp_file = false;
642
-		if(!$source_file)
642
+		if (!$source_file)
643 643
 		{
644 644
 			$random = new Password();
645 645
 
646 646
 			preg_match_all("!<img[^>]*src=(?:\"|\')([^\"\']*?)(?:\"|\')!is", $content, $matches, PREG_SET_ORDER);
647 647
 
648
-			foreach($matches as $target_image)
648
+			foreach ($matches as $target_image)
649 649
 			{
650 650
 				$target_src = trim($target_image[1]);
651
-				if(preg_match('/\/(common|modules|widgets|addons|layouts|m\.layouts)\//i', $target_src)) continue;
651
+				if (preg_match('/\/(common|modules|widgets|addons|layouts|m\.layouts)\//i', $target_src)) continue;
652 652
 
653
-				if(!preg_match('/^(http|https):\/\//i',$target_src))
653
+				if (!preg_match('/^(http|https):\/\//i', $target_src))
654 654
 				{
655 655
 					$target_src = Context::getRequestUri().$target_src;
656 656
 				}
657 657
 
658 658
 				$target_src = htmlspecialchars_decode($target_src);
659 659
 
660
-				$tmp_file = _XE_PATH_ . 'files/cache/tmp/' . $random->createSecureSalt(32, 'hex');
660
+				$tmp_file = _XE_PATH_.'files/cache/tmp/'.$random->createSecureSalt(32, 'hex');
661 661
 				FileHandler::getRemoteFile($target_src, $tmp_file);
662
-				if(!file_exists($tmp_file)) continue;
662
+				if (!file_exists($tmp_file)) continue;
663 663
 
664 664
 				$imageinfo = getimagesize($tmp_file);
665 665
 				list($_w, $_h) = $imageinfo;
666
-				if($imageinfo === false || ($_w < ($width * 0.3) && $_h < ($height * 0.3))) {
666
+				if ($imageinfo === false || ($_w < ($width * 0.3) && $_h < ($height * 0.3))) {
667 667
 					FileHandler::removeFile($tmp_file);
668 668
 					continue;
669 669
 				}
@@ -677,7 +677,7 @@  discard block
 block discarded – undo
677 677
 		$output = FileHandler::createImageFile($source_file, $thumbnail_file, $width, $height, 'jpg', $thumbnail_type);
678 678
 
679 679
 		// Remove source file if it was temporary
680
-		if($is_tmp_file)
680
+		if ($is_tmp_file)
681 681
 		{
682 682
 			FileHandler::removeFile($source_file);
683 683
 		}
@@ -686,14 +686,14 @@  discard block
 block discarded – undo
686 686
 		FileHandler::removeFile($thumbnail_lockfile);
687 687
 
688 688
 		// Return the thumbnail path if it was successfully generated
689
-		if($output)
689
+		if ($output)
690 690
 		{
691 691
 			return $thumbnail_url;
692 692
 		}
693 693
 		// Create an empty file if thumbnail generation failed
694 694
 		else
695 695
 		{
696
-			FileHandler::writeFile($thumbnail_file, '','w');
696
+			FileHandler::writeFile($thumbnail_file, '', 'w');
697 697
 		}
698 698
 
699 699
 		return;
Please login to merge, or discard this patch.
libs/PEAR.1.9.5/HTTP/Request2/Observer/Download.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@
 block discarded – undo
19 19
 	{
20 20
 		$event = $subject->getLastEvent();
21 21
 
22
-		switch($event['name'])
22
+		switch ($event['name'])
23 23
 		{
24 24
 			case 'receivedHeaders':
25 25
 				$this->fp = @fopen($this->filename, 'wb');
26
-				if(!$this->fp)
26
+				if (!$this->fp)
27 27
 				{
28 28
 					throw new Exception("Cannot open target file '{$filename}'");
29 29
 				}
Please login to merge, or discard this patch.
addons/member_extra_info/member_extra_info.lib.php 2 patches
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -8,12 +8,12 @@  discard block
 block discarded – undo
8 8
 {
9 9
 	// If member_srl < 0, then return text only in the body
10 10
 	$member_srl = $matches[3];
11
-	if($member_srl < 0)
11
+	if ($member_srl < 0)
12 12
 	{
13 13
 		return $matches[5];
14 14
 	}
15 15
 	// If member_srl=o(not a member), return the entire body
16
-	if(!$member_srl)
16
+	if (!$member_srl)
17 17
 	{
18 18
 		return $matches[0];
19 19
 	}
@@ -22,22 +22,22 @@  discard block
 block discarded – undo
22 22
 	$nick_name = $matches[5];
23 23
 
24 24
 	// Initialize global variable for cache
25
-	if(!isset($GLOBALS['_transImageNameList'][$member_srl]))
25
+	if (!isset($GLOBALS['_transImageNameList'][$member_srl]))
26 26
 	{
27 27
 		$GLOBALS['_transImageNameList'][$member_srl] = new stdClass();
28 28
 	}
29 29
 	$_tmp = &$GLOBALS['_transImageNameList'][$member_srl];
30 30
 	
31 31
 	// If pre-defined data in the global variables, return it
32
-	if(!$_tmp->cached)
32
+	if (!$_tmp->cached)
33 33
 	{
34 34
 		$_tmp->cached = true;
35 35
 		$image_name_file = sprintf('files/member_extra_info/image_name/%s%d.gif', getNumberingPath($member_srl), $member_srl);
36 36
 		$image_mark_file = sprintf('files/member_extra_info/image_mark/%s%d.gif', getNumberingPath($member_srl), $member_srl);
37 37
 
38
-		if(file_exists(_XE_PATH_ . $image_name_file))
38
+		if (file_exists(_XE_PATH_.$image_name_file))
39 39
 		{
40
-			$_tmp->image_name_file = $image_name_file . '?' . date('YmdHis', filemtime(_XE_PATH_ . $image_name_file));
40
+			$_tmp->image_name_file = $image_name_file.'?'.date('YmdHis', filemtime(_XE_PATH_.$image_name_file));
41 41
 			$image_name_file = $_tmp->image_name_file;
42 42
 		}
43 43
 		else
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
 			$image_name_file = '';
46 46
 		}
47 47
 
48
-		if(file_exists(_XE_PATH_ . $image_mark_file))
48
+		if (file_exists(_XE_PATH_.$image_mark_file))
49 49
 		{
50
-			$_tmp->image_mark_file = $image_mark_file . '?' . date('YmdHis', filemtime(_XE_PATH_ . $image_mark_file));
50
+			$_tmp->image_mark_file = $image_mark_file.'?'.date('YmdHis', filemtime(_XE_PATH_.$image_mark_file));
51 51
 			$image_mark_file = $_tmp->image_mark_file;
52 52
 		}
53 53
 		else
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 	}
68 68
 
69 69
 	// If image name and mark doesn't exist, set the original information
70
-	if(!$image_name_file && !$image_mark_file && !$group_image)
70
+	if (!$image_name_file && !$image_mark_file && !$group_image)
71 71
 	{
72 72
 		return $matches[0];
73 73
 	}
@@ -76,21 +76,21 @@  discard block
 block discarded – undo
76 76
 
77 77
 	$config = $oMemberModel->getMemberConfig();
78 78
 
79
-	if($config->image_name == 'Y' && $image_name_file)
79
+	if ($config->image_name == 'Y' && $image_name_file)
80 80
 	{
81 81
 		$nick_name = sprintf('<img src="%s%s" alt="id: %s" title="id: %s" style="border:0;vertical-align:middle;margin-right:3px" />', Context::getRequestUri(), $image_name_file, strip_tags($nick_name), strip_tags($nick_name));
82 82
 	}
83
-	if($config->image_mark == 'Y' && $image_mark_file)
83
+	if ($config->image_mark == 'Y' && $image_mark_file)
84 84
 	{
85 85
 		$nick_name = sprintf('<img src="%s%s" alt="id: %s" title="id : %s" style="border:0;vertical-align:middle;margin-right:3px"/>%s', Context::getRequestUri(), $image_mark_file, strip_tags($nick_name), strip_tags($nick_name), $nick_name);
86 86
 	}
87 87
 
88
-	if($group_image)
88
+	if ($group_image)
89 89
 	{
90 90
 		$nick_name = sprintf('<img src="%s" style="border:0;max-height:16px;vertical-align:middle;margin-right:3px" alt="%s" title="%s" />%s', $group_image->src, $group_image->title, $group_image->description, $nick_name);
91 91
 	}
92 92
 
93
-	return preg_replace('/' . preg_quote($matches[5], '/') . '<\/' . $matches[6] . '>$/', '', $matches[0]) . $nick_name . '</' . $matches[6] . '>';
93
+	return preg_replace('/'.preg_quote($matches[5], '/').'<\/'.$matches[6].'>$/', '', $matches[0]).$nick_name.'</'.$matches[6].'>';
94 94
 }
95 95
 
96 96
 /* End of file member_extra_info.lib.php */
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,8 +39,7 @@  discard block
 block discarded – undo
39 39
 		{
40 40
 			$_tmp->image_name_file = $image_name_file . '?' . date('YmdHis', filemtime(_XE_PATH_ . $image_name_file));
41 41
 			$image_name_file = $_tmp->image_name_file;
42
-		}
43
-		else
42
+		} else
44 43
 		{
45 44
 			$image_name_file = '';
46 45
 		}
@@ -49,8 +48,7 @@  discard block
 block discarded – undo
49 48
 		{
50 49
 			$_tmp->image_mark_file = $image_mark_file . '?' . date('YmdHis', filemtime(_XE_PATH_ . $image_mark_file));
51 50
 			$image_mark_file = $_tmp->image_mark_file;
52
-		}
53
-		else
51
+		} else
54 52
 		{
55 53
 			$image_mark_file = '';
56 54
 		}
@@ -58,8 +56,7 @@  discard block
 block discarded – undo
58 56
 		$site_module_info = Context::get('site_module_info');
59 57
 		$group_image = $oMemberModel->getGroupImageMark($member_srl, $site_module_info->site_srl);
60 58
 		$_tmp->group_image = $group_image;
61
-	}
62
-	else
59
+	} else
63 60
 	{
64 61
 		$group_image = $_tmp->group_image;
65 62
 		$image_name_file = $_tmp->image_name_file;
Please login to merge, or discard this patch.
config/func.inc.php 3 patches
Braces   +53 added lines, -67 removed lines patch added patch discarded remove patch
@@ -296,10 +296,11 @@  discard block
 block discarded – undo
296 296
 	$num_args = func_num_args();
297 297
 	$args_list = func_get_args();
298 298
 
299
-	if($num_args)
300
-		$url = Context::getUrl($num_args, $args_list);
301
-	else
302
-		$url = Context::getRequestUri();
299
+	if($num_args) {
300
+			$url = Context::getUrl($num_args, $args_list);
301
+	} else {
302
+			$url = Context::getRequestUri();
303
+	}
303 304
 
304 305
 	return preg_replace('@\berror_return_url=[^&]*|\w+=(?:&|$)@', '', $url);
305 306
 }
@@ -318,8 +319,7 @@  discard block
 block discarded – undo
318 319
 	if($num_args)
319 320
 	{
320 321
 		$url = Context::getUrl($num_args, $args_list, NULL, FALSE);
321
-	}
322
-	else
322
+	} else
323 323
 	{
324 324
 		$url = Context::getRequestUri();
325 325
 	}
@@ -341,8 +341,7 @@  discard block
 block discarded – undo
341 341
 	if($num_args)
342 342
 	{
343 343
 		$url = Context::getUrl($num_args, $args_list, NULL, TRUE, TRUE);
344
-	}
345
-	else
344
+	} else
346 345
 	{
347 346
 		$url = Context::getRequestUri();
348 347
 	}
@@ -531,13 +530,11 @@  discard block
 block discarded – undo
531 530
 		{
532 531
 			$char_width += (int) $chars[$c - 32];
533 532
 			$idx++;
534
-		}
535
-		else if(191 < $c && $c < 224)
533
+		} else if(191 < $c && $c < 224)
536 534
 		{
537 535
 			$char_width += $chars[4];
538 536
 			$idx += 2;
539
-		}
540
-		else
537
+		} else
541 538
 		{
542 539
 			$char_width += $chars[0];
543 540
 			$idx += 3;
@@ -564,8 +561,7 @@  discard block
 block discarded – undo
564 561
 	if($time_zone < 0)
565 562
 	{
566 563
 		$to = -1;
567
-	}
568
-	else
564
+	} else
569 565
 	{
570 566
 		$to = 1;
571 567
 	}
@@ -577,8 +573,7 @@  discard block
 block discarded – undo
577 573
 	if($server_time_zone < 0)
578 574
 	{
579 575
 		$so = -1;
580
-	}
581
-	else
576
+	} else
582 577
 	{
583 578
 		$so = 1;
584 579
 	}
@@ -615,8 +610,7 @@  discard block
 block discarded – undo
615 610
 	if(strlen($str) <= 8)
616 611
 	{
617 612
 		$gap = 0;
618
-	}
619
-	else
613
+	} else
620 614
 	{
621 615
 		$gap = zgap();
622 616
 	}
@@ -639,20 +633,16 @@  discard block
 block discarded – undo
639 633
 	if($gap < 60)
640 634
 	{
641 635
 		$buff = sprintf($lang_time_gap['min'], (int) ($gap / 60) + 1);
642
-	}
643
-	elseif($gap < 60 * 60)
636
+	} elseif($gap < 60 * 60)
644 637
 	{
645 638
 		$buff = sprintf($lang_time_gap['mins'], (int) ($gap / 60) + 1);
646
-	}
647
-	elseif($gap < 60 * 60 * 2)
639
+	} elseif($gap < 60 * 60 * 2)
648 640
 	{
649 641
 		$buff = sprintf($lang_time_gap['hour'], (int) ($gap / 60 / 60) + 1);
650
-	}
651
-	elseif($gap < 60 * 60 * 24)
642
+	} elseif($gap < 60 * 60 * 24)
652 643
 	{
653 644
 		$buff = sprintf($lang_time_gap['hours'], (int) ($gap / 60 / 60) + 1);
654
-	}
655
-	else
645
+	} else
656 646
 	{
657 647
 		$buff = zdate($date, $format);
658 648
 	}
@@ -699,12 +689,10 @@  discard block
 block discarded – undo
699 689
 				if($format == 'Y-m-d')
700 690
 				{
701 691
 					$format = 'M d, Y';
702
-				}
703
-				elseif($format == 'Y-m-d H:i:s')
692
+				} elseif($format == 'Y-m-d H:i:s')
704 693
 				{
705 694
 					$format = 'M d, Y H:i:s';
706
-				}
707
-				elseif($format == 'Y-m-d H:i')
695
+				} elseif($format == 'Y-m-d H:i')
708 696
 				{
709 697
 					$format = 'M d, Y H:i';
710 698
 				}
@@ -713,12 +701,10 @@  discard block
 block discarded – undo
713 701
 				if($format == 'Y-m-d')
714 702
 				{
715 703
 					$format = 'd-m-Y';
716
-				}
717
-				elseif($format == 'Y-m-d H:i:s')
704
+				} elseif($format == 'Y-m-d H:i:s')
718 705
 				{
719 706
 					$format = 'H:i:s d-m-Y';
720
-				}
721
-				elseif($format == 'Y-m-d H:i')
707
+				} elseif($format == 'Y-m-d H:i')
722 708
 				{
723 709
 					$format = 'H:i d-m-Y';
724 710
 				}
@@ -754,8 +740,7 @@  discard block
 block discarded – undo
754 740
 		);
755 741
 
756 742
 		$string = strtr($format, $trans);
757
-	}
758
-	else
743
+	} else
759 744
 	{
760 745
 		// if year value is greater than 1970, get unixtime by using ztime() for date() function's argument. 
761 746
 		$string = date($format, ztime($str));
@@ -842,8 +827,7 @@  discard block
 block discarded – undo
842 827
 		}
843 828
 
844 829
 		$firephp->fb($debug_output, $label, $type);
845
-	}
846
-	else
830
+	} else
847 831
 	{
848 832
 		if(__DEBUG_PROTECT__ === 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
849 833
 		{
@@ -855,7 +839,9 @@  discard block
 block discarded – undo
855 839
 		{
856 840
 			$debug_file = _XE_PATH_ . 'files/' . $file;
857 841
 		}
858
-		if(!file_exists($debug_file)) $print[] = '<?php exit() ?>';
842
+		if(!file_exists($debug_file)) {
843
+			$print[] = '<?php exit() ?>';
844
+		}
859 845
 
860 846
 		if($display_option === TRUE || $display_option === 'ERROR')
861 847
 		{
@@ -868,13 +854,11 @@  discard block
 block discarded – undo
868 854
 			if($display_option === 'ERROR')
869 855
 			{
870 856
 				$print[] = 'ERROR : ' . var_export($debug_output, TRUE);
871
-			}
872
-			else
857
+			} else
873 858
 			{
874 859
 				$print[] = 'DEBUG : ' . $type . '(' . var_export($debug_output, TRUE) . ')';
875 860
 			}
876
-		}
877
-		else
861
+		} else
878 862
 		{
879 863
 			$print[] = 'DEBUG : ' . trim(preg_replace('/\r?\n/', "\n" . '        ', print_r($debug_output, true)));
880 864
 		}
@@ -901,7 +885,9 @@  discard block
 block discarded – undo
901 885
  */
902 886
 function writeSlowlog($type, $elapsed_time, $obj)
903 887
 {
904
-	if(!__LOG_SLOW_TRIGGER__ && !__LOG_SLOW_ADDON__ && !__LOG_SLOW_WIDGET__ && !__LOG_SLOW_QUERY__) return;
888
+	if(!__LOG_SLOW_TRIGGER__ && !__LOG_SLOW_ADDON__ && !__LOG_SLOW_WIDGET__ && !__LOG_SLOW_QUERY__) {
889
+		return;
890
+	}
905 891
 
906 892
 	static $log_filename = array(
907 893
 		'query' => 'files/_slowlog_query.php',
@@ -921,25 +907,21 @@  discard block
 block discarded – undo
921 907
 	{
922 908
 		$buff[] = "\tCaller : " . $obj->caller;
923 909
 		$buff[] = "\tCalled : " . $obj->called;
924
-	}
925
-	else if($type == 'addon' && __LOG_SLOW_ADDON__ > 0 && $elapsed_time > __LOG_SLOW_ADDON__)
910
+	} else if($type == 'addon' && __LOG_SLOW_ADDON__ > 0 && $elapsed_time > __LOG_SLOW_ADDON__)
926 911
 	{
927 912
 		$buff[] = "\tAddon : " . $obj->called;
928 913
 		$buff[] = "\tCalled position : " . $obj->caller;
929
-	}
930
-	else if($type == 'widget' && __LOG_SLOW_WIDGET__ > 0 && $elapsed_time > __LOG_SLOW_WIDGET__)
914
+	} else if($type == 'widget' && __LOG_SLOW_WIDGET__ > 0 && $elapsed_time > __LOG_SLOW_WIDGET__)
931 915
 	{
932 916
 		$buff[] = "\tWidget : " . $obj->called;
933
-	}
934
-	else if($type == 'query' && __LOG_SLOW_QUERY__ > 0 && $elapsed_time > __LOG_SLOW_QUERY__)
917
+	} else if($type == 'query' && __LOG_SLOW_QUERY__ > 0 && $elapsed_time > __LOG_SLOW_QUERY__)
935 918
 	{
936 919
 
937 920
 		$buff[] = $obj->query;
938 921
 		$buff[] = "\tQuery ID   : " . $obj->query_id;
939 922
 		$buff[] = "\tCaller     : " . $obj->caller;
940 923
 		$buff[] = "\tConnection : " . $obj->connection;
941
-	}
942
-	else
924
+	} else
943 925
 	{
944 926
 		$write_file = false;
945 927
 	}
@@ -1031,8 +1013,11 @@  discard block
 block discarded – undo
1031 1013
 
1032 1014
 	foreach($del_vars as $var)
1033 1015
 	{
1034
-		if(is_array($vars)) unset($vars[$var]);
1035
-		else if(is_object($vars)) unset($vars->$var);
1016
+		if(is_array($vars)) {
1017
+			unset($vars[$var]);
1018
+		} else if(is_object($vars)) {
1019
+			unset($vars->$var);
1020
+		}
1036 1021
 	}
1037 1022
 
1038 1023
 	return $vars;
@@ -1169,8 +1154,7 @@  discard block
 block discarded – undo
1169 1154
 		if(($close_xmp = strrpos($content, '</xmp>')) === FALSE)
1170 1155
 		{
1171 1156
 			$content .= '</xmp>';
1172
-		}
1173
-		else if($close_xmp < $start_xmp)
1157
+		} else if($close_xmp < $start_xmp)
1174 1158
 		{
1175 1159
 			$content .= '</xmp>';
1176 1160
 		}
@@ -1227,12 +1211,18 @@  discard block
 block discarded – undo
1227 1211
 
1228 1212
 	$filter_arrts = array('style', 'src', 'href');
1229 1213
 
1230
-	if($tag === 'object') array_push($filter_arrts, 'data');
1231
-	if($tag === 'param') array_push($filter_arrts, 'value');
1214
+	if($tag === 'object') {
1215
+		array_push($filter_arrts, 'data');
1216
+	}
1217
+	if($tag === 'param') {
1218
+		array_push($filter_arrts, 'value');
1219
+	}
1232 1220
 
1233 1221
 	foreach($filter_arrts as $attr)
1234 1222
 	{
1235
-		if(!isset($attrs[$attr])) continue;
1223
+		if(!isset($attrs[$attr])) {
1224
+			continue;
1225
+		}
1236 1226
 
1237 1227
 		$attr_value = rawurldecode($attrs[$attr]);
1238 1228
 		$attr_value = htmlspecialchars_decode($attr_value, ENT_COMPAT);
@@ -1395,16 +1385,14 @@  discard block
 block discarded – undo
1395 1385
 				$unicode = hexdec($unicodeHexVal);
1396 1386
 				$decodedStr .= _code2utf($unicode);
1397 1387
 				$pos += 4;
1398
-			}
1399
-			else
1388
+			} else
1400 1389
 			{
1401 1390
 				// we have an escaped ascii character
1402 1391
 				$hexVal = substr($source, $pos, 2);
1403 1392
 				$decodedStr .= chr(hexdec($hexVal));
1404 1393
 				$pos += 2;
1405 1394
 			}
1406
-		}
1407
-		else
1395
+		} else
1408 1396
 		{
1409 1397
 			$decodedStr .= $charAt;
1410 1398
 			$pos++;
@@ -1596,8 +1584,7 @@  discard block
 block discarded – undo
1596 1584
 	if(version_compare(PHP_VERSION, "5.3.0") < 0)
1597 1585
 	{
1598 1586
 		set_include_path(_XE_PATH_ . "libs/PEAR" . PATH_SEPARATOR . get_include_path());
1599
-	}
1600
-	else
1587
+	} else
1601 1588
 	{
1602 1589
 		set_include_path(_XE_PATH_ . "libs/PEAR.1.9.5" . PATH_SEPARATOR . get_include_path());
1603 1590
 	}
@@ -1634,8 +1621,7 @@  discard block
 block discarded – undo
1634 1621
 		{
1635 1622
 			return FALSE;
1636 1623
 		}
1637
-	}
1638
-	else
1624
+	} else
1639 1625
 	{
1640 1626
 		$virtualSiteInfo = $oModuleModel->getSiteInfo($siteModuleInfo->site_srl);
1641 1627
 		if(strtolower($virtualSiteInfo->domain) != strtolower(Context::get('vid')) && !strstr(strtolower($virtualSiteInfo->domain), strtolower($referer['host'])))
Please login to merge, or discard this patch.
Spacing   +182 added lines, -182 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@  discard block
 block discarded – undo
6 6
  *
7 7
  * @author NAVER ([email protected])
8 8
  */
9
-if(!defined('__XE__'))
9
+if (!defined('__XE__'))
10 10
 {
11 11
 	exit();
12 12
 }
13 13
 
14 14
 // define an empty function to avoid errors when iconv function doesn't exist
15
-if(!function_exists('iconv'))
15
+if (!function_exists('iconv'))
16 16
 {
17 17
 	eval('
18 18
 		function iconv($in_charset, $out_charset, $str)
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 {
221 221
 	$oDB = DB::getInstance();
222 222
 	$output = $oDB->executeQuery($query_id, $args, $arg_columns);
223
-	if(!is_array($output->data) && count($output->data) > 0)
223
+	if (!is_array($output->data) && count($output->data) > 0)
224 224
 	{
225 225
 		$output->data = array($output->data);
226 226
 	}
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
 function setUserSequence($seq)
251 251
 {
252 252
 	$arr_seq = array();
253
-	if(isset($_SESSION['seq']))
253
+	if (isset($_SESSION['seq']))
254 254
 	{
255 255
 		$arr_seq = $_SESSION['seq'];
256 256
 	}
@@ -266,11 +266,11 @@  discard block
 block discarded – undo
266 266
  */
267 267
 function checkUserSequence($seq)
268 268
 {
269
-	if(!isset($_SESSION['seq']))
269
+	if (!isset($_SESSION['seq']))
270 270
 	{
271 271
 		return false;
272 272
 	}
273
-	if(!in_array($seq, $_SESSION['seq']))
273
+	if (!in_array($seq, $_SESSION['seq']))
274 274
 	{
275 275
 		return false;
276 276
 	}
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
 	$num_args = func_num_args();
297 297
 	$args_list = func_get_args();
298 298
 
299
-	if($num_args)
299
+	if ($num_args)
300 300
 		$url = Context::getUrl($num_args, $args_list);
301 301
 	else
302 302
 		$url = Context::getRequestUri();
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 	$num_args = func_num_args();
316 316
 	$args_list = func_get_args();
317 317
 
318
-	if($num_args)
318
+	if ($num_args)
319 319
 	{
320 320
 		$url = Context::getUrl($num_args, $args_list, NULL, FALSE);
321 321
 	}
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
 	$num_args = func_num_args();
339 339
 	$args_list = func_get_args();
340 340
 
341
-	if($num_args)
341
+	if ($num_args)
342 342
 	{
343 343
 		$url = Context::getUrl($num_args, $args_list, NULL, TRUE, TRUE);
344 344
 	}
@@ -360,16 +360,16 @@  discard block
 block discarded – undo
360 360
 	$num_args = func_num_args();
361 361
 	$args_list = func_get_args();
362 362
 	$request_uri = Context::getRequestUri();
363
-	if(!$num_args)
363
+	if (!$num_args)
364 364
 	{
365 365
 		return $request_uri;
366 366
 	}
367 367
 
368 368
 	$url = Context::getUrl($num_args, $args_list);
369
-	if(strncasecmp('http', $url, 4) !== 0)
369
+	if (strncasecmp('http', $url, 4) !== 0)
370 370
 	{
371 371
 		preg_match('/^(http|https):\/\/([^\/]+)\//', $request_uri, $match);
372
-		return substr($match[0], 0, -1) . $url;
372
+		return substr($match[0], 0, -1).$url;
373 373
 	}
374 374
 	return $url;
375 375
 }
@@ -384,17 +384,17 @@  discard block
 block discarded – undo
384 384
 	$num_args = func_num_args();
385 385
 	$args_list = func_get_args();
386 386
 	$request_uri = Context::getRequestUri();
387
-	if(!$num_args)
387
+	if (!$num_args)
388 388
 	{
389 389
 		return $request_uri;
390 390
 	}
391 391
 
392 392
 	$url = Context::getUrl($num_args, $args_list, NULL, FALSE);
393
-	if(strncasecmp('http', $url, 4) !== 0)
393
+	if (strncasecmp('http', $url, 4) !== 0)
394 394
 	{
395 395
 		preg_match('/^(http|https):\/\/([^\/]+)\//', $request_uri, $match);
396 396
 		$url = Context::getUrl($num_args, $args_list, NULL, FALSE);
397
-		return substr($match[0], 0, -1) . $url;
397
+		return substr($match[0], 0, -1).$url;
398 398
 	}
399 399
 	return $url;
400 400
 }
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
 	$num_args = func_num_args();
411 411
 	$args_list = func_get_args();
412 412
 
413
-	if(!$num_args)
413
+	if (!$num_args)
414 414
 	{
415 415
 		return Context::getRequestUri();
416 416
 	}
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
 	$num_args = func_num_args();
433 433
 	$args_list = func_get_args();
434 434
 
435
-	if(!$num_args)
435
+	if (!$num_args)
436 436
 	{
437 437
 		return Context::getRequestUri();
438 438
 	}
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
 	$args_list = func_get_args();
455 455
 
456 456
 	$request_uri = Context::getRequestUri();
457
-	if(!$num_args)
457
+	if (!$num_args)
458 458
 	{
459 459
 		return $request_uri;
460 460
 	}
@@ -463,10 +463,10 @@  discard block
 block discarded – undo
463 463
 	$num_args = count($args_list);
464 464
 
465 465
 	$url = Context::getUrl($num_args, $args_list, $domain);
466
-	if(strncasecmp('http', $url, 4) !== 0)
466
+	if (strncasecmp('http', $url, 4) !== 0)
467 467
 	{
468 468
 		preg_match('/^(http|https):\/\/([^\/]+)\//', $request_uri, $match);
469
-		return substr($match[0], 0, -1) . $url;
469
+		return substr($match[0], 0, -1).$url;
470 470
 	}
471 471
 	return $url;
472 472
 }
@@ -479,7 +479,7 @@  discard block
 block discarded – undo
479 479
 function getCurrentPageUrl()
480 480
 {
481 481
 	$protocol = $_SERVER['HTTPS'] == 'on' ? 'https://' : 'http://';
482
-	$url = $protocol . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
482
+	$url = $protocol.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
483 483
 	return htmlspecialchars($url, ENT_COMPAT, 'UTF-8', FALSE);
484 484
 }
485 485
 
@@ -504,12 +504,12 @@  discard block
 block discarded – undo
504 504
  */
505 505
 function cut_str($string, $cut_size = 0, $tail = '...')
506 506
 {
507
-	if($cut_size < 1 || !$string)
507
+	if ($cut_size < 1 || !$string)
508 508
 	{
509 509
 		return $string;
510 510
 	}
511 511
 
512
-	if($GLOBALS['use_mb_strimwidth'] || function_exists('mb_strimwidth'))
512
+	if ($GLOBALS['use_mb_strimwidth'] || function_exists('mb_strimwidth'))
513 513
 	{
514 514
 		$GLOBALS['use_mb_strimwidth'] = TRUE;
515 515
 		return mb_strimwidth($string, 0, $cut_size + 4, $tail, 'utf-8');
@@ -523,16 +523,16 @@  discard block
 block discarded – undo
523 523
 	$char_count = 0;
524 524
 
525 525
 	$idx = 0;
526
-	while($idx < $string_length && $char_count < $cut_size && $char_width <= $max_width)
526
+	while ($idx < $string_length && $char_count < $cut_size && $char_width <= $max_width)
527 527
 	{
528 528
 		$c = ord(substr($string, $idx, 1));
529 529
 		$char_count++;
530
-		if($c < 128)
530
+		if ($c < 128)
531 531
 		{
532 532
 			$char_width += (int) $chars[$c - 32];
533 533
 			$idx++;
534 534
 		}
535
-		else if(191 < $c && $c < 224)
535
+		else if (191 < $c && $c < 224)
536 536
 		{
537 537
 			$char_width += $chars[4];
538 538
 			$idx += 2;
@@ -545,7 +545,7 @@  discard block
 block discarded – undo
545 545
 	}
546 546
 
547 547
 	$output = substr($string, 0, $idx);
548
-	if(strlen($output) < $string_length)
548
+	if (strlen($output) < $string_length)
549 549
 	{
550 550
 		$output .= $tail;
551 551
 	}
@@ -561,7 +561,7 @@  discard block
 block discarded – undo
561 561
 function zgap()
562 562
 {
563 563
 	$time_zone = $GLOBALS['_time_zone'];
564
-	if($time_zone < 0)
564
+	if ($time_zone < 0)
565 565
 	{
566 566
 		$to = -1;
567 567
 	}
@@ -574,7 +574,7 @@  discard block
 block discarded – undo
574 574
 	$t_min = substr($time_zone, 3, 2) * $to;
575 575
 
576 576
 	$server_time_zone = date("O");
577
-	if($server_time_zone < 0)
577
+	if ($server_time_zone < 0)
578 578
 	{
579 579
 		$so = -1;
580 580
 	}
@@ -601,7 +601,7 @@  discard block
 block discarded – undo
601 601
  */
602 602
 function ztime($str)
603 603
 {
604
-	if(!$str)
604
+	if (!$str)
605 605
 	{
606 606
 		return;
607 607
 	}
@@ -612,7 +612,7 @@  discard block
 block discarded – undo
612 612
 	$year = (int) substr($str, 0, 4);
613 613
 	$month = (int) substr($str, 4, 2);
614 614
 	$day = (int) substr($str, 6, 2);
615
-	if(strlen($str) <= 8)
615
+	if (strlen($str) <= 8)
616 616
 	{
617 617
 		$gap = 0;
618 618
 	}
@@ -636,19 +636,19 @@  discard block
 block discarded – undo
636 636
 	$gap = $_SERVER['REQUEST_TIME'] + zgap() - ztime($date);
637 637
 
638 638
 	$lang_time_gap = Context::getLang('time_gap');
639
-	if($gap < 60)
639
+	if ($gap < 60)
640 640
 	{
641 641
 		$buff = sprintf($lang_time_gap['min'], (int) ($gap / 60) + 1);
642 642
 	}
643
-	elseif($gap < 60 * 60)
643
+	elseif ($gap < 60 * 60)
644 644
 	{
645 645
 		$buff = sprintf($lang_time_gap['mins'], (int) ($gap / 60) + 1);
646 646
 	}
647
-	elseif($gap < 60 * 60 * 2)
647
+	elseif ($gap < 60 * 60 * 2)
648 648
 	{
649 649
 		$buff = sprintf($lang_time_gap['hour'], (int) ($gap / 60 / 60) + 1);
650 650
 	}
651
-	elseif($gap < 60 * 60 * 24)
651
+	elseif ($gap < 60 * 60 * 24)
652 652
 	{
653 653
 		$buff = sprintf($lang_time_gap['hours'], (int) ($gap / 60 / 60) + 1);
654 654
 	}
@@ -685,40 +685,40 @@  discard block
 block discarded – undo
685 685
 function zdate($str, $format = 'Y-m-d H:i:s', $conversion = TRUE)
686 686
 {
687 687
 	// return null if no target time is specified
688
-	if(!$str)
688
+	if (!$str)
689 689
 	{
690 690
 		return;
691 691
 	}
692 692
 	// convert the date format according to the language
693
-	if($conversion == TRUE)
693
+	if ($conversion == TRUE)
694 694
 	{
695
-		switch(Context::getLangType())
695
+		switch (Context::getLangType())
696 696
 		{
697 697
 			case 'en' :
698 698
 			case 'es' :
699
-				if($format == 'Y-m-d')
699
+				if ($format == 'Y-m-d')
700 700
 				{
701 701
 					$format = 'M d, Y';
702 702
 				}
703
-				elseif($format == 'Y-m-d H:i:s')
703
+				elseif ($format == 'Y-m-d H:i:s')
704 704
 				{
705 705
 					$format = 'M d, Y H:i:s';
706 706
 				}
707
-				elseif($format == 'Y-m-d H:i')
707
+				elseif ($format == 'Y-m-d H:i')
708 708
 				{
709 709
 					$format = 'M d, Y H:i';
710 710
 				}
711 711
 				break;
712 712
 			case 'vi' :
713
-				if($format == 'Y-m-d')
713
+				if ($format == 'Y-m-d')
714 714
 				{
715 715
 					$format = 'd-m-Y';
716 716
 				}
717
-				elseif($format == 'Y-m-d H:i:s')
717
+				elseif ($format == 'Y-m-d H:i:s')
718 718
 				{
719 719
 					$format = 'H:i:s d-m-Y';
720 720
 				}
721
-				elseif($format == 'Y-m-d H:i')
721
+				elseif ($format == 'Y-m-d H:i')
722 722
 				{
723 723
 					$format = 'H:i d-m-Y';
724 724
 				}
@@ -727,7 +727,7 @@  discard block
 block discarded – undo
727 727
 	}
728 728
 
729 729
 	// If year value is less than 1970, handle it separately.
730
-	if((int) substr($str, 0, 4) < 1970)
730
+	if ((int) substr($str, 0, 4) < 1970)
731 731
 	{
732 732
 		$hour = (int) substr($str, 8, 2);
733 733
 		$min = (int) substr($str, 10, 2);
@@ -777,9 +777,9 @@  discard block
 block discarded – undo
777 777
 function getEncodeEmailAddress($email)
778 778
 {
779 779
 	$return = '';
780
-	for($i = 0, $c = strlen($email); $i < $c; $i++)
780
+	for ($i = 0, $c = strlen($email); $i < $c; $i++)
781 781
 	{
782
-		$return .= '&#' . (rand(0, 1) == 0 ? ord($email[$i]) : 'X' . dechex(ord($email[$i]))) . ';';
782
+		$return .= '&#'.(rand(0, 1) == 0 ? ord($email[$i]) : 'X'.dechex(ord($email[$i]))).';';
783 783
 	}
784 784
 	return $return;
785 785
 }
@@ -799,25 +799,25 @@  discard block
 block discarded – undo
799 799
 {
800 800
 	static $debug_file;
801 801
 
802
-	if(!(__DEBUG__ & 1))
802
+	if (!(__DEBUG__ & 1))
803 803
 	{
804 804
 		return;
805 805
 	}
806 806
 
807 807
 	static $firephp;
808 808
 	$bt = debug_backtrace();
809
-	if(is_array($bt))
809
+	if (is_array($bt))
810 810
 	{
811 811
 		$bt_debug_print = array_shift($bt);
812 812
 		$bt_called_function = array_shift($bt);
813 813
 	}
814 814
 	$file_name = str_replace(_XE_PATH_, '', $bt_debug_print['file']);
815 815
 	$line_num = $bt_debug_print['line'];
816
-	$function = $bt_called_function['class'] . $bt_called_function['type'] . $bt_called_function['function'];
816
+	$function = $bt_called_function['class'].$bt_called_function['type'].$bt_called_function['function'];
817 817
 
818
-	if(__DEBUG_OUTPUT__ == 2 && version_compare(PHP_VERSION, '6.0.0') === -1)
818
+	if (__DEBUG_OUTPUT__ == 2 && version_compare(PHP_VERSION, '6.0.0') === -1)
819 819
 	{
820
-		if(!isset($firephp))
820
+		if (!isset($firephp))
821 821
 		{
822 822
 			$firephp = FirePHP::getInstance(TRUE);
823 823
 		}
@@ -826,16 +826,16 @@  discard block
 block discarded – undo
826 826
 		$label = sprintf('[%s:%d] %s() (Memory usage: current=%s, peak=%s)', $file_name, $line_num, $function, FileHandler::filesize(memory_get_usage()), FileHandler::filesize(memory_get_peak_usage()));
827 827
 
828 828
 		// Check a FirePHP option
829
-		if($display_option === 'TABLE')
829
+		if ($display_option === 'TABLE')
830 830
 		{
831 831
 			$label = $display_option;
832 832
 		}
833
-		if($display_option === 'ERROR')
833
+		if ($display_option === 'ERROR')
834 834
 		{
835 835
 			$type = $display_option;
836 836
 		}
837 837
 		// Check if the IP specified by __DEBUG_PROTECT__ option is same as the access IP.
838
-		if(__DEBUG_PROTECT__ === 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
838
+		if (__DEBUG_PROTECT__ === 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
839 839
 		{
840 840
 			$debug_output = 'The IP address is not allowed. Change the value of __DEBUG_PROTECT_IP__ into your IP address in config/config.user.inc.php or config/config.inc.php';
841 841
 			$label = NULL;
@@ -845,52 +845,52 @@  discard block
 block discarded – undo
845 845
 	}
846 846
 	else
847 847
 	{
848
-		if(__DEBUG_PROTECT__ === 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
848
+		if (__DEBUG_PROTECT__ === 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
849 849
 		{
850 850
 			return;
851 851
 		}
852 852
 
853 853
 		$print = array();
854
-		if(!$debug_file)
854
+		if (!$debug_file)
855 855
 		{
856
-			$debug_file = _XE_PATH_ . 'files/' . $file;
856
+			$debug_file = _XE_PATH_.'files/'.$file;
857 857
 		}
858
-		if(!file_exists($debug_file)) $print[] = '<?php exit() ?>';
858
+		if (!file_exists($debug_file)) $print[] = '<?php exit() ?>';
859 859
 
860
-		if($display_option === TRUE || $display_option === 'ERROR')
860
+		if ($display_option === TRUE || $display_option === 'ERROR')
861 861
 		{
862
-			$print[] = sprintf("[%s %s:%d] %s() - mem(%s)", date('Y-m-d H:i:s'), $file_name, $line_num, $function, FileHandler::filesize(memory_get_usage()));;
862
+			$print[] = sprintf("[%s %s:%d] %s() - mem(%s)", date('Y-m-d H:i:s'), $file_name, $line_num, $function, FileHandler::filesize(memory_get_usage())); ;
863 863
 			$print[] = str_repeat('=', 80);
864 864
 		}
865 865
 		$type = gettype($debug_output);
866
-		if(!in_array($type, array('array', 'object', 'resource')))
866
+		if (!in_array($type, array('array', 'object', 'resource')))
867 867
 		{
868
-			if($display_option === 'ERROR')
868
+			if ($display_option === 'ERROR')
869 869
 			{
870
-				$print[] = 'ERROR : ' . var_export($debug_output, TRUE);
870
+				$print[] = 'ERROR : '.var_export($debug_output, TRUE);
871 871
 			}
872 872
 			else
873 873
 			{
874
-				$print[] = 'DEBUG : ' . $type . '(' . var_export($debug_output, TRUE) . ')';
874
+				$print[] = 'DEBUG : '.$type.'('.var_export($debug_output, TRUE).')';
875 875
 			}
876 876
 		}
877 877
 		else
878 878
 		{
879
-			$print[] = 'DEBUG : ' . trim(preg_replace('/\r?\n/', "\n" . '        ', print_r($debug_output, true)));
879
+			$print[] = 'DEBUG : '.trim(preg_replace('/\r?\n/', "\n".'        ', print_r($debug_output, true)));
880 880
 		}
881 881
 		$backtrace_args = defined('\DEBUG_BACKTRACE_IGNORE_ARGS') ? \DEBUG_BACKTRACE_IGNORE_ARGS : 0;
882 882
 		$backtrace = debug_backtrace($backtrace_args);
883 883
 
884
-		if(count($backtrace) > 1 && $backtrace[1]['function'] === 'debugPrint' && !$backtrace[1]['class'])
884
+		if (count($backtrace) > 1 && $backtrace[1]['function'] === 'debugPrint' && !$backtrace[1]['class'])
885 885
 		{
886 886
 			array_shift($backtrace);
887 887
 		}
888
-		foreach($backtrace as $val)
888
+		foreach ($backtrace as $val)
889 889
 		{
890
-			$print[] = '        - ' . $val['file'] . ' : ' . $val['line'];
890
+			$print[] = '        - '.$val['file'].' : '.$val['line'];
891 891
 		}
892 892
 		$print[] = PHP_EOL;
893
-		@file_put_contents($debug_file, implode(PHP_EOL, $print), FILE_APPEND|LOCK_EX);
893
+		@file_put_contents($debug_file, implode(PHP_EOL, $print), FILE_APPEND | LOCK_EX);
894 894
 	}
895 895
 }
896 896
 
@@ -901,7 +901,7 @@  discard block
 block discarded – undo
901 901
  */
902 902
 function writeSlowlog($type, $elapsed_time, $obj)
903 903
 {
904
-	if(!__LOG_SLOW_TRIGGER__ && !__LOG_SLOW_ADDON__ && !__LOG_SLOW_WIDGET__ && !__LOG_SLOW_QUERY__) return;
904
+	if (!__LOG_SLOW_TRIGGER__ && !__LOG_SLOW_ADDON__ && !__LOG_SLOW_WIDGET__ && !__LOG_SLOW_QUERY__) return;
905 905
 
906 906
 	static $log_filename = array(
907 907
 		'query' => 'files/_slowlog_query.php',
@@ -911,47 +911,47 @@  discard block
 block discarded – undo
911 911
 	);
912 912
 	$write_file = true;
913 913
 
914
-	$log_file = _XE_PATH_ . $log_filename[$type];
914
+	$log_file = _XE_PATH_.$log_filename[$type];
915 915
 
916 916
 	$buff = array();
917 917
 	$buff[] = '<?php exit(); ?>';
918 918
 	$buff[] = date('c');
919 919
 
920
-	if($type == 'trigger' && __LOG_SLOW_TRIGGER__ > 0 && $elapsed_time > __LOG_SLOW_TRIGGER__)
920
+	if ($type == 'trigger' && __LOG_SLOW_TRIGGER__ > 0 && $elapsed_time > __LOG_SLOW_TRIGGER__)
921 921
 	{
922
-		$buff[] = "\tCaller : " . $obj->caller;
923
-		$buff[] = "\tCalled : " . $obj->called;
922
+		$buff[] = "\tCaller : ".$obj->caller;
923
+		$buff[] = "\tCalled : ".$obj->called;
924 924
 	}
925
-	else if($type == 'addon' && __LOG_SLOW_ADDON__ > 0 && $elapsed_time > __LOG_SLOW_ADDON__)
925
+	else if ($type == 'addon' && __LOG_SLOW_ADDON__ > 0 && $elapsed_time > __LOG_SLOW_ADDON__)
926 926
 	{
927
-		$buff[] = "\tAddon : " . $obj->called;
928
-		$buff[] = "\tCalled position : " . $obj->caller;
927
+		$buff[] = "\tAddon : ".$obj->called;
928
+		$buff[] = "\tCalled position : ".$obj->caller;
929 929
 	}
930
-	else if($type == 'widget' && __LOG_SLOW_WIDGET__ > 0 && $elapsed_time > __LOG_SLOW_WIDGET__)
930
+	else if ($type == 'widget' && __LOG_SLOW_WIDGET__ > 0 && $elapsed_time > __LOG_SLOW_WIDGET__)
931 931
 	{
932
-		$buff[] = "\tWidget : " . $obj->called;
932
+		$buff[] = "\tWidget : ".$obj->called;
933 933
 	}
934
-	else if($type == 'query' && __LOG_SLOW_QUERY__ > 0 && $elapsed_time > __LOG_SLOW_QUERY__)
934
+	else if ($type == 'query' && __LOG_SLOW_QUERY__ > 0 && $elapsed_time > __LOG_SLOW_QUERY__)
935 935
 	{
936 936
 
937 937
 		$buff[] = $obj->query;
938
-		$buff[] = "\tQuery ID   : " . $obj->query_id;
939
-		$buff[] = "\tCaller     : " . $obj->caller;
940
-		$buff[] = "\tConnection : " . $obj->connection;
938
+		$buff[] = "\tQuery ID   : ".$obj->query_id;
939
+		$buff[] = "\tCaller     : ".$obj->caller;
940
+		$buff[] = "\tConnection : ".$obj->connection;
941 941
 	}
942 942
 	else
943 943
 	{
944 944
 		$write_file = false;
945 945
 	}
946 946
 
947
-	if($write_file)
947
+	if ($write_file)
948 948
 	{
949 949
 		$buff[] = sprintf("\t%0.6f sec", $elapsed_time);
950
-		$buff[] = PHP_EOL . PHP_EOL;
950
+		$buff[] = PHP_EOL.PHP_EOL;
951 951
 		file_put_contents($log_file, implode(PHP_EOL, $buff), FILE_APPEND);
952 952
 	}
953 953
 
954
-	if($type != 'query')
954
+	if ($type != 'query')
955 955
 	{
956 956
 		$trigger_args = $obj;
957 957
 		$trigger_args->_log_type = $type;
@@ -991,11 +991,11 @@  discard block
 block discarded – undo
991 991
  */
992 992
 function delObjectVars($target_obj, $del_obj)
993 993
 {
994
-	if(!is_object($target_obj))
994
+	if (!is_object($target_obj))
995 995
 	{
996 996
 		return;
997 997
 	}
998
-	if(!is_object($del_obj))
998
+	if (!is_object($del_obj))
999 999
 	{
1000 1000
 		return;
1001 1001
 	}
@@ -1005,7 +1005,7 @@  discard block
 block discarded – undo
1005 1005
 
1006 1006
 	$target = array_keys($target_vars);
1007 1007
 	$del = array_keys($del_vars);
1008
-	if(!count($target) || !count($del))
1008
+	if (!count($target) || !count($del))
1009 1009
 	{
1010 1010
 		return $target_obj;
1011 1011
 	}
@@ -1013,10 +1013,10 @@  discard block
 block discarded – undo
1013 1013
 	$return_obj = new stdClass();
1014 1014
 
1015 1015
 	$target_count = count($target);
1016
-	for($i = 0; $i < $target_count; $i++)
1016
+	for ($i = 0; $i < $target_count; $i++)
1017 1017
 	{
1018 1018
 		$target_key = $target[$i];
1019
-		if(!in_array($target_key, $del))
1019
+		if (!in_array($target_key, $del))
1020 1020
 		{
1021 1021
 			$return_obj->{$target_key} = $target_obj->{$target_key};
1022 1022
 		}
@@ -1029,10 +1029,10 @@  discard block
 block discarded – undo
1029 1029
 {
1030 1030
 	$del_vars = array('error_return_url', 'success_return_url', 'ruleset', 'xe_validator_id');
1031 1031
 
1032
-	foreach($del_vars as $var)
1032
+	foreach ($del_vars as $var)
1033 1033
 	{
1034
-		if(is_array($vars)) unset($vars[$var]);
1035
-		else if(is_object($vars)) unset($vars->$var);
1034
+		if (is_array($vars)) unset($vars[$var]);
1035
+		else if (is_object($vars)) unset($vars->$var);
1036 1036
 	}
1037 1037
 
1038 1038
 	return $vars;
@@ -1049,12 +1049,12 @@  discard block
 block discarded – undo
1049 1049
  */
1050 1050
 function handleError($errno, $errstr, $file, $line)
1051 1051
 {
1052
-	if(!__DEBUG__)
1052
+	if (!__DEBUG__)
1053 1053
 	{
1054 1054
 		return;
1055 1055
 	}
1056 1056
 	$errors = array(E_USER_ERROR, E_ERROR, E_PARSE);
1057
-	if(!in_array($errno, $errors))
1057
+	if (!in_array($errno, $errors))
1058 1058
 	{
1059 1059
 		return;
1060 1060
 	}
@@ -1074,8 +1074,8 @@  discard block
 block discarded – undo
1074 1074
 function getNumberingPath($no, $size = 3)
1075 1075
 {
1076 1076
 	$mod = pow(10, $size);
1077
-	$output = sprintf('%0' . $size . 'd/', $no % $mod);
1078
-	if($no >= $mod)
1077
+	$output = sprintf('%0'.$size.'d/', $no % $mod);
1078
+	if ($no >= $mod)
1079 1079
 	{
1080 1080
 		$output .= getNumberingPath((int) $no / $mod, $size);
1081 1081
 	}
@@ -1095,7 +1095,7 @@  discard block
 block discarded – undo
1095 1095
 
1096 1096
 function purifierHtml(&$content)
1097 1097
 {
1098
-	require_once(_XE_PATH_ . 'classes/security/Purifier.class.php');
1098
+	require_once(_XE_PATH_.'classes/security/Purifier.class.php');
1099 1099
 	$oPurifier = Purifier::getInstance();
1100 1100
 	$oPurifier->purify($content);
1101 1101
 }
@@ -1108,7 +1108,7 @@  discard block
 block discarded – undo
1108 1108
  */
1109 1109
 function removeHackTag($content)
1110 1110
 {
1111
-	require_once(_XE_PATH_ . 'classes/security/EmbedFilter.class.php');
1111
+	require_once(_XE_PATH_.'classes/security/EmbedFilter.class.php');
1112 1112
 	$oEmbedFilter = EmbedFilter::getInstance();
1113 1113
 	$oEmbedFilter->check($content);
1114 1114
 
@@ -1150,7 +1150,7 @@  discard block
 block discarded – undo
1150 1150
  */
1151 1151
 function checkUploadedFile($file)
1152 1152
 {
1153
-	require_once(_XE_PATH_ . 'classes/security/UploadFileFilter.class.php');
1153
+	require_once(_XE_PATH_.'classes/security/UploadFileFilter.class.php');
1154 1154
 	return UploadFileFilter::check($file);
1155 1155
 }
1156 1156
 
@@ -1164,13 +1164,13 @@  discard block
 block discarded – undo
1164 1164
 {
1165 1165
 	$content = preg_replace('@<(/?)xmp.*?>@i', '<\1xmp>', $content);
1166 1166
 
1167
-	if(($start_xmp = strrpos($content, '<xmp>')) !== FALSE)
1167
+	if (($start_xmp = strrpos($content, '<xmp>')) !== FALSE)
1168 1168
 	{
1169
-		if(($close_xmp = strrpos($content, '</xmp>')) === FALSE)
1169
+		if (($close_xmp = strrpos($content, '</xmp>')) === FALSE)
1170 1170
 		{
1171 1171
 			$content .= '</xmp>';
1172 1172
 		}
1173
-		else if($close_xmp < $start_xmp)
1173
+		else if ($close_xmp < $start_xmp)
1174 1174
 		{
1175 1175
 			$content .= '</xmp>';
1176 1176
 		}
@@ -1190,33 +1190,33 @@  discard block
 block discarded – undo
1190 1190
 	$tag = strtolower($match[2]);
1191 1191
 
1192 1192
 	// xmp tag ?뺣━
1193
-	if($tag == 'xmp')
1193
+	if ($tag == 'xmp')
1194 1194
 	{
1195 1195
 		return "<{$match[1]}xmp>";
1196 1196
 	}
1197
-	if($match[1])
1197
+	if ($match[1])
1198 1198
 	{
1199 1199
 		return $match[0];
1200 1200
 	}
1201
-	if($match[4])
1201
+	if ($match[4])
1202 1202
 	{
1203
-		$match[4] = ' ' . $match[4];
1203
+		$match[4] = ' '.$match[4];
1204 1204
 	}
1205 1205
 
1206 1206
 	$attrs = array();
1207
-	if(preg_match_all('/([\w:-]+)\s*=(?:\s*(["\']))?(?(2)(.*?)\2|([^ ]+))/s', $match[3], $m))
1207
+	if (preg_match_all('/([\w:-]+)\s*=(?:\s*(["\']))?(?(2)(.*?)\2|([^ ]+))/s', $match[3], $m))
1208 1208
 	{
1209
-		foreach($m[1] as $idx => $name)
1209
+		foreach ($m[1] as $idx => $name)
1210 1210
 		{
1211
-			if(strlen($name) >= 2 && substr_compare($name, 'on', 0, 2) === 0)
1211
+			if (strlen($name) >= 2 && substr_compare($name, 'on', 0, 2) === 0)
1212 1212
 			{
1213 1213
 				continue;
1214 1214
 			}
1215 1215
 
1216
-			$val = preg_replace_callback('/&#(?:x([a-fA-F0-9]+)|0*(\d+));/', function($n) {return chr($n[1] ? ('0x00' . $n[1]) : ($n[2] + 0)); }, $m[3][$idx] . $m[4][$idx]);
1216
+			$val = preg_replace_callback('/&#(?:x([a-fA-F0-9]+)|0*(\d+));/', function($n) {return chr($n[1] ? ('0x00'.$n[1]) : ($n[2] + 0)); }, $m[3][$idx].$m[4][$idx]);
1217 1217
 			$val = preg_replace('/^\s+|[\t\n\r]+/', '', $val);
1218 1218
 
1219
-			if(preg_match('/^[a-z]+script:/i', $val))
1219
+			if (preg_match('/^[a-z]+script:/i', $val))
1220 1220
 			{
1221 1221
 				continue;
1222 1222
 			}
@@ -1227,60 +1227,60 @@  discard block
 block discarded – undo
1227 1227
 
1228 1228
 	$filter_arrts = array('style', 'src', 'href');
1229 1229
 
1230
-	if($tag === 'object') array_push($filter_arrts, 'data');
1231
-	if($tag === 'param') array_push($filter_arrts, 'value');
1230
+	if ($tag === 'object') array_push($filter_arrts, 'data');
1231
+	if ($tag === 'param') array_push($filter_arrts, 'value');
1232 1232
 
1233
-	foreach($filter_arrts as $attr)
1233
+	foreach ($filter_arrts as $attr)
1234 1234
 	{
1235
-		if(!isset($attrs[$attr])) continue;
1235
+		if (!isset($attrs[$attr])) continue;
1236 1236
 
1237 1237
 		$attr_value = rawurldecode($attrs[$attr]);
1238 1238
 		$attr_value = htmlspecialchars_decode($attr_value, ENT_COMPAT);
1239 1239
 		$attr_value = preg_replace('/\s+|[\t\n\r]+/', '', $attr_value);
1240
-		if(preg_match('@(\?|&|;)(act=(\w+))@i', $attr_value, $m) && $m[3] !== 'procFileDownload')
1240
+		if (preg_match('@(\?|&|;)(act=(\w+))@i', $attr_value, $m) && $m[3] !== 'procFileDownload')
1241 1241
 		{
1242 1242
 			unset($attrs[$attr]);
1243 1243
 		}
1244 1244
 	}
1245 1245
 
1246
-	if(isset($attrs['style']) && preg_match('@(?:/\*|\*/|\n|:\s*expression\s*\()@i', $attrs['style']))
1246
+	if (isset($attrs['style']) && preg_match('@(?:/\*|\*/|\n|:\s*expression\s*\()@i', $attrs['style']))
1247 1247
 	{
1248 1248
 		unset($attrs['style']);
1249 1249
 	}
1250 1250
 
1251 1251
 	$attr = array();
1252
-	foreach($attrs as $name => $val)
1252
+	foreach ($attrs as $name => $val)
1253 1253
 	{
1254
-		if($tag == 'object' || $tag == 'embed' || $tag == 'a')
1254
+		if ($tag == 'object' || $tag == 'embed' || $tag == 'a')
1255 1255
 		{
1256 1256
 			$attribute = strtolower(trim($name));
1257
-			if($attribute == 'data' || $attribute == 'src' || $attribute == 'href')
1257
+			if ($attribute == 'data' || $attribute == 'src' || $attribute == 'href')
1258 1258
 			{
1259
-				if(stripos($val, 'data:') === 0)
1259
+				if (stripos($val, 'data:') === 0)
1260 1260
 				{
1261 1261
 					continue;
1262 1262
 				}
1263 1263
 			}
1264 1264
 		}
1265 1265
 
1266
-		if($tag == 'img')
1266
+		if ($tag == 'img')
1267 1267
 		{
1268 1268
 			$attribute = strtolower(trim($name));
1269
-			if(stripos($val, 'data:') === 0)
1269
+			if (stripos($val, 'data:') === 0)
1270 1270
 			{
1271 1271
 				continue;
1272 1272
 			}
1273 1273
 		}
1274 1274
 		$val = str_replace('"', '&quot;', $val);
1275
-		$attr[] = $name . "=\"{$val}\"";
1275
+		$attr[] = $name."=\"{$val}\"";
1276 1276
 	}
1277
-	$attr = count($attr) ? ' ' . implode(' ', $attr) : '';
1277
+	$attr = count($attr) ? ' '.implode(' ', $attr) : '';
1278 1278
 
1279 1279
 	return "<{$match[1]}{$tag}{$attr}{$match[4]}>";
1280 1280
 }
1281 1281
 
1282 1282
 // convert hexa value to RGB
1283
-if(!function_exists('hexrgb'))
1283
+if (!function_exists('hexrgb'))
1284 1284
 {
1285 1285
 
1286 1286
 	/**
@@ -1316,9 +1316,9 @@  discard block
 block discarded – undo
1316 1316
 
1317 1317
 	settype($password, "string");
1318 1318
 
1319
-	for($i = 0; $i < strlen($password); $i++)
1319
+	for ($i = 0; $i < strlen($password); $i++)
1320 1320
 	{
1321
-		if($password[$i] == ' ' || $password[$i] == '\t')
1321
+		if ($password[$i] == ' ' || $password[$i] == '\t')
1322 1322
 		{
1323 1323
 			continue;
1324 1324
 		}
@@ -1330,11 +1330,11 @@  discard block
 block discarded – undo
1330 1330
 	$result1 = sprintf("%08lx", $nr & ((1 << 31) - 1));
1331 1331
 	$result2 = sprintf("%08lx", $nr2 & ((1 << 31) - 1));
1332 1332
 
1333
-	if($result1 == '80000000')
1333
+	if ($result1 == '80000000')
1334 1334
 	{
1335 1335
 		$nr += 0x80000000;
1336 1336
 	}
1337
-	if($result2 == '80000000')
1337
+	if ($result2 == '80000000')
1338 1338
 	{
1339 1339
 		$nr2 += 0x80000000;
1340 1340
 	}
@@ -1350,7 +1350,7 @@  discard block
 block discarded – undo
1350 1350
 function getScriptPath()
1351 1351
 {
1352 1352
 	static $url = NULL;
1353
-	if($url == NULL)
1353
+	if ($url == NULL)
1354 1354
 	{
1355 1355
 		$script_path = filter_var($_SERVER['SCRIPT_NAME'], FILTER_SANITIZE_STRING);
1356 1356
 		$url = str_ireplace('/tools/', '/', preg_replace('/index.php.*/i', '', str_replace('\\', '/', $script_path)));
@@ -1381,14 +1381,14 @@  discard block
 block discarded – undo
1381 1381
 	$decodedStr = '';
1382 1382
 	$pos = 0;
1383 1383
 	$len = strlen($source);
1384
-	while($pos < $len)
1384
+	while ($pos < $len)
1385 1385
 	{
1386 1386
 		$charAt = substr($source, $pos, 1);
1387
-		if($charAt == '%')
1387
+		if ($charAt == '%')
1388 1388
 		{
1389 1389
 			$pos++;
1390 1390
 			$charAt = substr($source, $pos, 1);
1391
-			if($charAt == 'u')
1391
+			if ($charAt == 'u')
1392 1392
 			{
1393 1393
 				// we got a unicode character
1394 1394
 				$pos++;
@@ -1422,21 +1422,21 @@  discard block
 block discarded – undo
1422 1422
  */
1423 1423
 function _code2utf($num)
1424 1424
 {
1425
-	if($num < 128)
1425
+	if ($num < 128)
1426 1426
 	{
1427 1427
 		return chr($num);
1428 1428
 	}
1429
-	if($num < 2048)
1429
+	if ($num < 2048)
1430 1430
 	{
1431
-		return chr(($num >> 6) + 192) . chr(($num & 63) + 128);
1431
+		return chr(($num >> 6) + 192).chr(($num & 63) + 128);
1432 1432
 	}
1433
-	if($num < 65536)
1433
+	if ($num < 65536)
1434 1434
 	{
1435
-		return chr(($num >> 12) + 224) . chr((($num >> 6) & 63) + 128) . chr(($num & 63) + 128);
1435
+		return chr(($num >> 12) + 224).chr((($num >> 6) & 63) + 128).chr(($num & 63) + 128);
1436 1436
 	}
1437
-	if($num < 2097152)
1437
+	if ($num < 2097152)
1438 1438
 	{
1439
-		return chr(($num >> 18) + 240) . chr((($num >> 12) & 63) + 128) . chr((($num >> 6) & 63) + 128) . chr(($num & 63) + 128);
1439
+		return chr(($num >> 18) + 240).chr((($num >> 12) & 63) + 128).chr((($num >> 6) & 63) + 128).chr(($num & 63) + 128);
1440 1440
 	}
1441 1441
 	return '';
1442 1442
 }
@@ -1451,7 +1451,7 @@  discard block
 block discarded – undo
1451 1451
  */
1452 1452
 function detectUTF8($string, $return_convert = FALSE, $urldecode = TRUE)
1453 1453
 {
1454
-	if($urldecode)
1454
+	if ($urldecode)
1455 1455
 	{
1456 1456
 		$string = urldecode($string);
1457 1457
 	}
@@ -1459,12 +1459,12 @@  discard block
 block discarded – undo
1459 1459
 	$sample = iconv('utf-8', 'utf-8', $string);
1460 1460
 	$is_utf8 = (md5($sample) === md5($string));
1461 1461
 
1462
-	if(!$urldecode)
1462
+	if (!$urldecode)
1463 1463
 	{
1464 1464
 		$string = urldecode($string);
1465 1465
 	}
1466 1466
 
1467
-	if($return_convert)
1467
+	if ($return_convert)
1468 1468
 	{
1469 1469
 		return ($is_utf8) ? $string : iconv('euc-kr', 'utf-8', $string);
1470 1470
 	}
@@ -1480,7 +1480,7 @@  discard block
 block discarded – undo
1480 1480
  */
1481 1481
 function json_encode2($data)
1482 1482
 {
1483
-	switch(gettype($data))
1483
+	switch (gettype($data))
1484 1484
 	{
1485 1485
 		case 'boolean':
1486 1486
 			return $data ? 'true' : 'false';
@@ -1488,15 +1488,15 @@  discard block
 block discarded – undo
1488 1488
 		case 'double':
1489 1489
 			return $data;
1490 1490
 		case 'string':
1491
-			return '"' . strtr($data, array('\\' => '\\\\', '"' => '\\"')) . '"';
1491
+			return '"'.strtr($data, array('\\' => '\\\\', '"' => '\\"')).'"';
1492 1492
 		case 'object':
1493 1493
 			$data = get_object_vars($data);
1494 1494
 		case 'array':
1495 1495
 			$rel = FALSE; // relative array?
1496 1496
 			$key = array_keys($data);
1497
-			foreach($key as $v)
1497
+			foreach ($key as $v)
1498 1498
 			{
1499
-				if(!is_int($v))
1499
+				if (!is_int($v))
1500 1500
 				{
1501 1501
 					$rel = TRUE;
1502 1502
 					break;
@@ -1504,12 +1504,12 @@  discard block
 block discarded – undo
1504 1504
 			}
1505 1505
 
1506 1506
 			$arr = array();
1507
-			foreach($data as $k => $v)
1507
+			foreach ($data as $k => $v)
1508 1508
 			{
1509
-				$arr[] = ($rel ? '"' . strtr($k, array('\\' => '\\\\', '"' => '\\"')) . '":' : '') . json_encode2($v);
1509
+				$arr[] = ($rel ? '"'.strtr($k, array('\\' => '\\\\', '"' => '\\"')).'":' : '').json_encode2($v);
1510 1510
 			}
1511 1511
 
1512
-			return $rel ? '{' . join(',', $arr) . '}' : '[' . join(',', $arr) . ']';
1512
+			return $rel ? '{'.join(',', $arr).'}' : '['.join(',', $arr).']';
1513 1513
 		default:
1514 1514
 			return '""';
1515 1515
 	}
@@ -1523,7 +1523,7 @@  discard block
 block discarded – undo
1523 1523
  */
1524 1524
 function isCrawler($agent = NULL)
1525 1525
 {
1526
-	if(!$agent)
1526
+	if (!$agent)
1527 1527
 	{
1528 1528
 		$agent = $_SERVER['HTTP_USER_AGENT'];
1529 1529
 	}
@@ -1533,9 +1533,9 @@  discard block
 block discarded – undo
1533 1533
 		/*'211.245.21.110-211.245.21.119' mixsh is closed */
1534 1534
 	);
1535 1535
 
1536
-	foreach($check_agent as $str)
1536
+	foreach ($check_agent as $str)
1537 1537
 	{
1538
-		if(stristr($agent, $str) != FALSE)
1538
+		if (stristr($agent, $str) != FALSE)
1539 1539
 		{
1540 1540
 			return TRUE;
1541 1541
 		}
@@ -1553,7 +1553,7 @@  discard block
 block discarded – undo
1553 1553
  */
1554 1554
 function stripEmbedTagForAdmin(&$content, $writer_member_srl)
1555 1555
 {
1556
-	if(!Context::get('is_logged'))
1556
+	if (!Context::get('is_logged'))
1557 1557
 	{
1558 1558
 		return;
1559 1559
 	}
@@ -1561,18 +1561,18 @@  discard block
 block discarded – undo
1561 1561
 	$oModuleModel = getModel('module');
1562 1562
 	$logged_info = Context::get('logged_info');
1563 1563
 
1564
-	if($writer_member_srl != $logged_info->member_srl && ($logged_info->is_admin == "Y" || $oModuleModel->isSiteAdmin($logged_info)))
1564
+	if ($writer_member_srl != $logged_info->member_srl && ($logged_info->is_admin == "Y" || $oModuleModel->isSiteAdmin($logged_info)))
1565 1565
 	{
1566
-		if($writer_member_srl)
1566
+		if ($writer_member_srl)
1567 1567
 		{
1568 1568
 			$oMemberModel = getModel('member');
1569 1569
 			$member_info = $oMemberModel->getMemberInfoByMemberSrl($writer_member_srl);
1570
-			if($member_info->is_admin == "Y")
1570
+			if ($member_info->is_admin == "Y")
1571 1571
 			{
1572 1572
 				return;
1573 1573
 			}
1574 1574
 		}
1575
-		$security_msg = "<div style='border: 1px solid #DDD; background: #FAFAFA; text-align:center; margin: 1em 0;'><p style='margin: 1em;'>" . Context::getLang('security_warning_embed') . "</p></div>";
1575
+		$security_msg = "<div style='border: 1px solid #DDD; background: #FAFAFA; text-align:center; margin: 1em 0;'><p style='margin: 1em;'>".Context::getLang('security_warning_embed')."</p></div>";
1576 1576
 		$content = preg_replace('/<object[^>]+>(.*?<\/object>)?/is', $security_msg, $content);
1577 1577
 		$content = preg_replace('/<embed[^>]+>(\s*<\/embed>)?/is', $security_msg, $content);
1578 1578
 		$content = preg_replace('/<img[^>]+editor_component="multimedia_link"[^>]*>(\s*<\/img>)?/is', $security_msg, $content);
@@ -1589,18 +1589,18 @@  discard block
 block discarded – undo
1589 1589
 function requirePear()
1590 1590
 {
1591 1591
 	static $required = false;
1592
-	if($required)
1592
+	if ($required)
1593 1593
 	{
1594 1594
 		return;
1595 1595
 	}
1596 1596
 
1597
-	if(version_compare(PHP_VERSION, "5.3.0") < 0)
1597
+	if (version_compare(PHP_VERSION, "5.3.0") < 0)
1598 1598
 	{
1599
-		set_include_path(_XE_PATH_ . "libs/PEAR" . PATH_SEPARATOR . get_include_path());
1599
+		set_include_path(_XE_PATH_."libs/PEAR".PATH_SEPARATOR.get_include_path());
1600 1600
 	}
1601 1601
 	else
1602 1602
 	{
1603
-		set_include_path(_XE_PATH_ . "libs/PEAR.1.9.5" . PATH_SEPARATOR . get_include_path());
1603
+		set_include_path(_XE_PATH_."libs/PEAR.1.9.5".PATH_SEPARATOR.get_include_path());
1604 1604
 	}
1605 1605
 
1606 1606
 	$required = true;
@@ -1608,7 +1608,7 @@  discard block
 block discarded – undo
1608 1608
 
1609 1609
 function checkCSRF()
1610 1610
 {
1611
-	if($_SERVER['REQUEST_METHOD'] != 'POST')
1611
+	if ($_SERVER['REQUEST_METHOD'] != 'POST')
1612 1612
 	{
1613 1613
 		return FALSE;
1614 1614
 	}
@@ -1616,9 +1616,9 @@  discard block
 block discarded – undo
1616 1616
 	$default_url = Context::getDefaultUrl();
1617 1617
 	$referer = $_SERVER["HTTP_REFERER"];
1618 1618
 
1619
-	if(strpos($default_url, 'xn--') !== FALSE && strpos($referer, 'xn--') === FALSE)
1619
+	if (strpos($default_url, 'xn--') !== FALSE && strpos($referer, 'xn--') === FALSE)
1620 1620
 	{
1621
-		require_once(_XE_PATH_ . 'libs/idna_convert/idna_convert.class.php');
1621
+		require_once(_XE_PATH_.'libs/idna_convert/idna_convert.class.php');
1622 1622
 		$IDN = new idna_convert(array('idn_version' => 2008));
1623 1623
 		$referer = $IDN->encode($referer);
1624 1624
 	}
@@ -1629,9 +1629,9 @@  discard block
 block discarded – undo
1629 1629
 	$oModuleModel = getModel('module');
1630 1630
 	$siteModuleInfo = $oModuleModel->getDefaultMid();
1631 1631
 
1632
-	if($siteModuleInfo->site_srl == 0)
1632
+	if ($siteModuleInfo->site_srl == 0)
1633 1633
 	{
1634
-		if($default_url['host'] !== $referer['host'])
1634
+		if ($default_url['host'] !== $referer['host'])
1635 1635
 		{
1636 1636
 			return FALSE;
1637 1637
 		}
@@ -1639,7 +1639,7 @@  discard block
 block discarded – undo
1639 1639
 	else
1640 1640
 	{
1641 1641
 		$virtualSiteInfo = $oModuleModel->getSiteInfo($siteModuleInfo->site_srl);
1642
-		if(strtolower($virtualSiteInfo->domain) != strtolower(Context::get('vid')) && !strstr(strtolower($virtualSiteInfo->domain), strtolower($referer['host'])))
1642
+		if (strtolower($virtualSiteInfo->domain) != strtolower(Context::get('vid')) && !strstr(strtolower($virtualSiteInfo->domain), strtolower($referer['host'])))
1643 1643
 		{
1644 1644
 			return FALSE;
1645 1645
 		}
@@ -1655,15 +1655,15 @@  discard block
 block discarded – undo
1655 1655
  */
1656 1656
 function recurciveExposureCheck(&$menu)
1657 1657
 {
1658
-	if(is_array($menu))
1658
+	if (is_array($menu))
1659 1659
 	{
1660
-		foreach($menu AS $key=>$value)
1660
+		foreach ($menu AS $key=>$value)
1661 1661
 		{
1662
-			if(!$value['isShow'])
1662
+			if (!$value['isShow'])
1663 1663
 			{
1664 1664
 				unset($menu[$key]);
1665 1665
 			}
1666
-			if(is_array($value['list']) && count($value['list']) > 0)
1666
+			if (is_array($value['list']) && count($value['list']) > 0)
1667 1667
 			{
1668 1668
 				recurciveExposureCheck($menu[$key]['list']);
1669 1669
 			}
@@ -1673,14 +1673,14 @@  discard block
 block discarded – undo
1673 1673
 
1674 1674
 function changeValueInUrl($key, $requestKey, $dbKey, $urlName = 'success_return_url')
1675 1675
 {
1676
-	if($requestKey != $dbKey)
1676
+	if ($requestKey != $dbKey)
1677 1677
 	{
1678 1678
 		$arrayUrl = parse_url(Context::get('success_return_url'));
1679
-		if($arrayUrl['query'])
1679
+		if ($arrayUrl['query'])
1680 1680
 		{
1681 1681
 			parse_str($arrayUrl['query'], $parsedStr);
1682 1682
 
1683
-			if(isset($parsedStr[$key]))
1683
+			if (isset($parsedStr[$key]))
1684 1684
 			{
1685 1685
 				$parsedStr[$key] = $requestKey;
1686 1686
 				$successReturnUrl .= $arrayUrl['path'].'?'.http_build_query($parsedStr);
@@ -1723,14 +1723,14 @@  discard block
 block discarded – undo
1723 1723
  */
1724 1724
 function alertScript($msg)
1725 1725
 {
1726
-	if(!$msg)
1726
+	if (!$msg)
1727 1727
 	{
1728 1728
 		return;
1729 1729
 	}
1730 1730
 
1731 1731
 	echo '<script type="text/javascript">
1732 1732
 //<![CDATA[
1733
-alert("' . $msg . '");
1733
+alert("' . $msg.'");
1734 1734
 //]]>
1735 1735
 </script>';
1736 1736
 }
@@ -1761,7 +1761,7 @@  discard block
 block discarded – undo
1761 1761
 
1762 1762
 	echo '<script type="text/javascript">
1763 1763
 //<![CDATA[
1764
-' . $reloadScript . '
1764
+' . $reloadScript.'
1765 1765
 //]]>
1766 1766
 </script>';
1767 1767
 }
Please login to merge, or discard this patch.
Doc Comments   +18 added lines, -15 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
  * @param string $module_name The module name to get a instance
75 75
  * @param string $type disp, proc, controller, class
76 76
  * @param string $kind admin, null
77
- * @return mixed Module instance
77
+ * @return ModuleObject Module instance
78 78
  */
79 79
 function getModule($module_name, $type = 'view', $kind = '')
80 80
 {
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
  * Create a controller instance of the module
86 86
  *
87 87
  * @param string $module_name The module name to get a controller instance
88
- * @return mixed Module controller instance
88
+ * @return ModuleObject Module controller instance
89 89
  */
90 90
 function getController($module_name)
91 91
 {
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
  * Create a admin controller instance of the module
97 97
  *
98 98
  * @param string $module_name The module name to get a admin controller instance
99
- * @return mixed Module admin controller instance
99
+ * @return ModuleObject Module admin controller instance
100 100
  */
101 101
 function getAdminController($module_name)
102 102
 {
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
  * Create a view instance of the module
108 108
  *
109 109
  * @param string $module_name The module name to get a view instance
110
- * @return mixed Module view instance
110
+ * @return ModuleObject Module view instance
111 111
  */
112 112
 function getView($module_name)
113 113
 {
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
  * Create a mobile instance of the module
119 119
  *
120 120
  * @param string $module_name The module name to get a mobile instance
121
- * @return mixed Module mobile instance
121
+ * @return ModuleObject Module mobile instance
122 122
  */
123 123
 function &getMobile($module_name)
124 124
 {
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
  * Create a admin view instance of the module
130 130
  *
131 131
  * @param string $module_name The module name to get a admin view instance
132
- * @return mixed Module admin view instance
132
+ * @return ModuleObject Module admin view instance
133 133
  */
134 134
 function getAdminView($module_name)
135 135
 {
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
  * Create a model instance of the module
141 141
  *
142 142
  * @param string $module_name The module name to get a model instance
143
- * @return mixed Module model instance
143
+ * @return ModuleObject Module model instance
144 144
  */
145 145
 function getModel($module_name)
146 146
 {
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
  * Create an admin model instance of the module
152 152
  *
153 153
  * @param string $module_name The module name to get a admin model instance
154
- * @return mixed Module admin model instance
154
+ * @return ModuleObject Module admin model instance
155 155
  */
156 156
 function getAdminModel($module_name)
157 157
 {
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
  * Create an api instance of the module
163 163
  *
164 164
  * @param string $module_name The module name to get a api instance
165
- * @return mixed Module api class instance
165
+ * @return ModuleObject Module api class instance
166 166
  */
167 167
 function getAPI($module_name)
168 168
 {
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
  * Create a wap instance of the module
174 174
  *
175 175
  * @param string $module_name The module name to get a wap instance
176
- * @return mixed Module wap class instance
176
+ * @return ModuleObject Module wap class instance
177 177
  */
178 178
 function getWAP($module_name)
179 179
 {
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
  * Create a class instance of the module
185 185
  *
186 186
  * @param string $module_name The module name to get a class instance
187
- * @return mixed Module class instance
187
+ * @return ModuleObject Module class instance
188 188
  */
189 189
 function getClass($module_name)
190 190
 {
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
  * Return if domain of the virtual site is url type or id type
488 488
  *
489 489
  * @param string $domain
490
- * @return bool
490
+ * @return integer
491 491
  */
492 492
 function isSiteID($domain)
493 493
 {
@@ -556,7 +556,7 @@  discard block
 block discarded – undo
556 556
 /**
557 557
  * Get a time gap between server's timezone and XE's timezone
558 558
  *
559
- * @return int
559
+ * @return double
560 560
  */
561 561
 function zgap()
562 562
 {
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
  * YYYYMMDDHHIISS format changed to unix time value
598 598
  *
599 599
  * @param string $str Time value in format of YYYYMMDDHHIISS
600
- * @return int
600
+ * @return null|double
601 601
  */
602 602
 function ztime($str)
603 603
 {
@@ -897,7 +897,7 @@  discard block
 block discarded – undo
897 897
 /**
898 898
  * @param string $type query, trigger
899 899
  * @param float $elapsed_time
900
- * @param object $obj
900
+ * @param stdClass $obj
901 901
  */
902 902
 function writeSlowlog($type, $elapsed_time, $obj)
903 903
 {
@@ -1671,6 +1671,9 @@  discard block
 block discarded – undo
1671 1671
 	}
1672 1672
 }
1673 1673
 
1674
+/**
1675
+ * @param string $key
1676
+ */
1674 1677
 function changeValueInUrl($key, $requestKey, $dbKey, $urlName = 'success_return_url')
1675 1678
 {
1676 1679
 	if($requestKey != $dbKey)
Please login to merge, or discard this patch.
classes/xml/xmlquery/tags/navigation/LimitTag.class.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -48,11 +48,11 @@  discard block
 block discarded – undo
48 48
 	 */
49 49
 	function LimitTag($index)
50 50
 	{
51
-		if($index->page && $index->page->attrs && $index->page_count && $index->page_count->attrs)
51
+		if ($index->page && $index->page->attrs && $index->page_count && $index->page_count->attrs)
52 52
 		{
53
-			if(!isset($index->page->attrs->default))
53
+			if (!isset($index->page->attrs->default))
54 54
 				$index->page->attrs->default = 1;
55
-			if(!isset($index->page_count->attrs->default))
55
+			if (!isset($index->page_count->attrs->default))
56 56
 				$index->page_count->attrs->default = 10;
57 57
 			$this->page = new QueryArgument($index->page);
58 58
 			$this->page_count = new QueryArgument($index->page_count);
@@ -60,12 +60,12 @@  discard block
 block discarded – undo
60 60
 			$this->arguments[] = $this->page_count;
61 61
 		}
62 62
 
63
-		if(!isset($index->list_count->attrs->default))
63
+		if (!isset($index->list_count->attrs->default))
64 64
 			$index->list_count->attrs->default = 0;
65 65
 		$this->list_count = new QueryArgument($index->list_count);
66 66
 		$this->arguments[] = $this->list_count;
67 67
 		
68
-		if(isset($index->offset) && isset($index->offset->attrs))
68
+		if (isset($index->offset) && isset($index->offset->attrs))
69 69
 		{
70 70
 			$this->offset = new QueryArgument($index->offset);
71 71
 			$this->arguments[] = $this->offset;
@@ -74,11 +74,11 @@  discard block
 block discarded – undo
74 74
 
75 75
 	function toString()
76 76
 	{
77
-		if($this->page)
77
+		if ($this->page)
78 78
 		{
79 79
 			return sprintf('new Limit(${\'%s_argument\'}, ${\'%s_argument\'}, ${\'%s_argument\'})', $this->list_count->getArgumentName(), $this->page->getArgumentName(), $this->page_count->getArgumentName());
80 80
 		}
81
-		elseif($this->offset)
81
+		elseif ($this->offset)
82 82
 		{
83 83
 			return sprintf('new Limit(${\'%s_argument\'}, NULL, NULL, ${\'%s_argument\'})', $this->list_count->getArgumentName(), $this->offset->getArgumentName());
84 84
 		}
Please login to merge, or discard this patch.
Braces   +11 added lines, -10 removed lines patch added patch discarded remove patch
@@ -50,18 +50,21 @@  discard block
 block discarded – undo
50 50
 	{
51 51
 		if($index->page && $index->page->attrs && $index->page_count && $index->page_count->attrs)
52 52
 		{
53
-			if(!isset($index->page->attrs->default))
54
-				$index->page->attrs->default = 1;
55
-			if(!isset($index->page_count->attrs->default))
56
-				$index->page_count->attrs->default = 10;
53
+			if(!isset($index->page->attrs->default)) {
54
+							$index->page->attrs->default = 1;
55
+			}
56
+			if(!isset($index->page_count->attrs->default)) {
57
+							$index->page_count->attrs->default = 10;
58
+			}
57 59
 			$this->page = new QueryArgument($index->page);
58 60
 			$this->page_count = new QueryArgument($index->page_count);
59 61
 			$this->arguments[] = $this->page;
60 62
 			$this->arguments[] = $this->page_count;
61 63
 		}
62 64
 
63
-		if(!isset($index->list_count->attrs->default))
64
-			$index->list_count->attrs->default = 0;
65
+		if(!isset($index->list_count->attrs->default)) {
66
+					$index->list_count->attrs->default = 0;
67
+		}
65 68
 		$this->list_count = new QueryArgument($index->list_count);
66 69
 		$this->arguments[] = $this->list_count;
67 70
 		
@@ -77,12 +80,10 @@  discard block
 block discarded – undo
77 80
 		if($this->page)
78 81
 		{
79 82
 			return sprintf('new Limit(${\'%s_argument\'}, ${\'%s_argument\'}, ${\'%s_argument\'})', $this->list_count->getArgumentName(), $this->page->getArgumentName(), $this->page_count->getArgumentName());
80
-		}
81
-		elseif($this->offset)
83
+		} elseif($this->offset)
82 84
 		{
83 85
 			return sprintf('new Limit(${\'%s_argument\'}, NULL, NULL, ${\'%s_argument\'})', $this->list_count->getArgumentName(), $this->offset->getArgumentName());
84
-		}
85
-		else
86
+		} else
86 87
 		{
87 88
 			return sprintf('new Limit(${\'%s_argument\'})', $this->list_count->getArgumentName());
88 89
 		}
Please login to merge, or discard this patch.
classes/db/queryparts/limit/Limit.class.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	function Limit($list_count, $page = NULL, $page_count = NULL, $offset = NULL)
45 45
 	{
46 46
 		$this->list_count = $list_count;
47
-		if($page)
47
+		if ($page)
48 48
 		{
49 49
 			$list_count_value = $list_count->getValue();
50 50
 			$page_value = $page->getValue();
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 			$this->page_count = $page_count;
53 53
 			$this->page = $page;
54 54
 		}
55
-		elseif($offset)
55
+		elseif ($offset)
56 56
 		{
57 57
 			$this->start = $offset->getValue();
58 58
 		}
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 	 */
65 65
 	function isPageHandler()
66 66
 	{
67
-		if($this->page)
67
+		if ($this->page)
68 68
 		{
69 69
 			return true;
70 70
 		}
@@ -86,9 +86,9 @@  discard block
 block discarded – undo
86 86
 
87 87
 	function toString()
88 88
 	{
89
-		if($this->page || $this->start)
89
+		if ($this->page || $this->start)
90 90
 		{
91
-			return $this->start . ' , ' . $this->list_count->getValue();
91
+			return $this->start.' , '.$this->list_count->getValue();
92 92
 		}
93 93
 		else
94 94
 		{
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -51,8 +51,7 @@  discard block
 block discarded – undo
51 51
 			$this->start = ($page_value - 1) * $list_count_value;
52 52
 			$this->page_count = $page_count;
53 53
 			$this->page = $page;
54
-		}
55
-		elseif($offset)
54
+		} elseif($offset)
56 55
 		{
57 56
 			$this->start = $offset->getValue();
58 57
 		}
@@ -67,8 +66,7 @@  discard block
 block discarded – undo
67 66
 		if($this->page)
68 67
 		{
69 68
 			return true;
70
-		}
71
-		else
69
+		} else
72 70
 		{
73 71
 			return false;
74 72
 		}
@@ -89,8 +87,7 @@  discard block
 block discarded – undo
89 87
 		if($this->page || $this->start)
90 88
 		{
91 89
 			return $this->start . ' , ' . $this->list_count->getValue();
92
-		}
93
-		else
90
+		} else
94 91
 		{
95 92
 			return $this->list_count->getValue();
96 93
 		}
Please login to merge, or discard this patch.
classes/db/DBMysqli.class.php 2 patches
Braces   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -23,7 +23,9 @@  discard block
 block discarded – undo
23 23
 	function DBMysqli($auto_connect = TRUE)
24 24
 	{
25 25
 		$this->_setDBInfo();
26
-		if($auto_connect) $this->_connect();
26
+		if($auto_connect) {
27
+			$this->_connect();
28
+		}
27 29
 	}
28 30
 
29 31
 	/**
@@ -51,8 +53,7 @@  discard block
 block discarded – undo
51 53
 							, $connection["db_password"]
52 54
 							, $connection["db_database"]
53 55
 							, $connection["db_port"]);
54
-		}
55
-		else
56
+		} else
56 57
 		{
57 58
 			$result = @mysqli_connect($connection["db_hostname"]
58 59
 							, $connection["db_userid"]
@@ -209,8 +210,7 @@  discard block
 block discarded – undo
209 210
 					$params[] = $v;
210 211
 					$types .= $type;
211 212
 				}
212
-			}
213
-			else
213
+			} else
214 214
 			{
215 215
 				$params[] = $value;
216 216
 				$types .= $type;
@@ -249,10 +249,12 @@  discard block
 block discarded – undo
249 249
 		$longtext_exists = false;
250 250
 		foreach($fields as $field)
251 251
 		{
252
-			if(isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails
252
+			if(isset($resultArray[$field->name])) {
253
+				// When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails
253 254
 			{
254 255
 				$field->name = 'repeat_' . $field->name;
255 256
 			}
257
+			}
256 258
 
257 259
 			// Array passed needs to contain references, not values
258 260
 			$row[$field->name] = "";
@@ -301,8 +303,7 @@  discard block
 block discarded – undo
301 303
 			{
302 304
 				$output[$arrayIndexEndValue--] = $row;
303 305
 			}
304
-		}
305
-		else
306
+		} else
306 307
 		{
307 308
 			$output = $rows;
308 309
 		}
@@ -312,8 +313,7 @@  discard block
 block discarded – undo
312 313
 			if(isset($arrayIndexEndValue))
313 314
 			{
314 315
 				return $output;
315
-			}
316
-			else
316
+			} else
317 317
 			{
318 318
 				return $output[0];
319 319
 			}
Please login to merge, or discard this patch.
Spacing   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 	function DBMysqli($auto_connect = TRUE)
24 24
 	{
25 25
 		$this->_setDBInfo();
26
-		if($auto_connect) $this->_connect();
26
+		if ($auto_connect) $this->_connect();
27 27
 	}
28 28
 
29 29
 	/**
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	function __connect($connection)
45 45
 	{
46 46
 		// Attempt to connect
47
-		if($connection["db_port"])
47
+		if ($connection["db_port"])
48 48
 		{
49 49
 			$result = @mysqli_connect($connection["db_hostname"]
50 50
 							, $connection["db_userid"]
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 							, $connection["db_database"]);
61 61
 		}
62 62
 		$error = mysqli_connect_errno();
63
-		if($error)
63
+		if ($error)
64 64
 		{
65 65
 			$this->setError($error, mysqli_connect_error());
66 66
 			return;
@@ -87,11 +87,11 @@  discard block
 block discarded – undo
87 87
 	 */
88 88
 	function addQuotes($string)
89 89
 	{
90
-		if(version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc())
90
+		if (version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc())
91 91
 		{
92 92
 			$string = stripslashes(str_replace("\\", "\\\\", $string));
93 93
 		}
94
-		if(!is_numeric($string))
94
+		if (!is_numeric($string))
95 95
 		{
96 96
 			$connection = $this->_getConnection('master');
97 97
 			$string = mysqli_escape_string($connection, $string);
@@ -108,23 +108,23 @@  discard block
 block discarded – undo
108 108
 	 */
109 109
 	function __query($query, $connection)
110 110
 	{
111
-		if($this->use_prepared_statements == 'Y')
111
+		if ($this->use_prepared_statements == 'Y')
112 112
 		{
113 113
 			// 1. Prepare query
114 114
 			$stmt = mysqli_prepare($connection, $query);
115
-			if($stmt)
115
+			if ($stmt)
116 116
 			{
117 117
 				$types = '';
118 118
 				$params = array();
119 119
 				$this->_prepareQueryParameters($types, $params);
120 120
 
121
-				if(!empty($params))
121
+				if (!empty($params))
122 122
 				{
123 123
 					$args[0] = $stmt;
124 124
 					$args[1] = $types;
125 125
 
126 126
 					$i = 2;
127
-					foreach($params as $key => $param)
127
+					foreach ($params as $key => $param)
128 128
 					{
129 129
 						$copy[$key] = $param;
130 130
 						$args[$i++] = &$copy[$key];
@@ -132,18 +132,18 @@  discard block
 block discarded – undo
132 132
 
133 133
 					// 2. Bind parameters
134 134
 					$status = call_user_func_array('mysqli_stmt_bind_param', $args);
135
-					if(!$status)
135
+					if (!$status)
136 136
 					{
137
-						$this->setError(-1, "Invalid arguments: $query" . mysqli_error($connection));
137
+						$this->setError(-1, "Invalid arguments: $query".mysqli_error($connection));
138 138
 					}
139 139
 				}
140 140
 
141 141
 				// 3. Execute query
142 142
 				$status = mysqli_stmt_execute($stmt);
143 143
 
144
-				if(!$status)
144
+				if (!$status)
145 145
 				{
146
-					$this->setError(-1, "Prepared statement failed: $query" . mysqli_error($connection));
146
+					$this->setError(-1, "Prepared statement failed: $query".mysqli_error($connection));
147 147
 				}
148 148
 
149 149
 				// Return stmt for other processing - like retrieving resultset (_fetch)
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 		$result = mysqli_query($connection, $query);
156 156
 		// Error Check
157 157
 		$error = mysqli_error($connection);
158
-		if($error)
158
+		if ($error)
159 159
 		{
160 160
 			$this->setError(mysqli_errno($connection), $error);
161 161
 		}
@@ -174,23 +174,23 @@  discard block
 block discarded – undo
174 174
 	{
175 175
 		$types = '';
176 176
 		$params = array();
177
-		if(!$this->param)
177
+		if (!$this->param)
178 178
 		{
179 179
 			return;
180 180
 		}
181 181
 
182
-		foreach($this->param as $k => $o)
182
+		foreach ($this->param as $k => $o)
183 183
 		{
184 184
 			$value = $o->getUnescapedValue();
185 185
 			$type = $o->getType();
186 186
 
187 187
 			// Skip column names -> this should be concatenated to query string
188
-			if($o->isColumnName())
188
+			if ($o->isColumnName())
189 189
 			{
190 190
 				continue;
191 191
 			}
192 192
 
193
-			switch($type)
193
+			switch ($type)
194 194
 			{
195 195
 				case 'number' :
196 196
 					$type = 'i';
@@ -202,9 +202,9 @@  discard block
 block discarded – undo
202 202
 					$type = 's';
203 203
 			}
204 204
 
205
-			if(is_array($value))
205
+			if (is_array($value))
206 206
 			{
207
-				foreach($value as $v)
207
+				foreach ($value as $v)
208 208
 				{
209 209
 					$params[] = $v;
210 210
 					$types .= $type;
@@ -226,12 +226,12 @@  discard block
 block discarded – undo
226 226
 	 */
227 227
 	function _fetch($result, $arrayIndexEndValue = NULL)
228 228
 	{
229
-		if($this->use_prepared_statements != 'Y')
229
+		if ($this->use_prepared_statements != 'Y')
230 230
 		{
231 231
 			return parent::_fetch($result, $arrayIndexEndValue);
232 232
 		}
233 233
 		$output = array();
234
-		if(!$this->isConnected() || $this->isError() || !$result)
234
+		if (!$this->isConnected() || $this->isError() || !$result)
235 235
 		{
236 236
 			return $output;
237 237
 		}
@@ -247,25 +247,25 @@  discard block
 block discarded – undo
247 247
 		 * MYSQLI_TYPE for longtext is 252
248 248
 		 */
249 249
 		$longtext_exists = false;
250
-		foreach($fields as $field)
250
+		foreach ($fields as $field)
251 251
 		{
252
-			if(isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails
252
+			if (isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails
253 253
 			{
254
-				$field->name = 'repeat_' . $field->name;
254
+				$field->name = 'repeat_'.$field->name;
255 255
 			}
256 256
 
257 257
 			// Array passed needs to contain references, not values
258 258
 			$row[$field->name] = "";
259 259
 			$resultArray[$field->name] = &$row[$field->name];
260 260
 
261
-			if($field->type == 252)
261
+			if ($field->type == 252)
262 262
 			{
263 263
 				$longtext_exists = true;
264 264
 			}
265 265
 		}
266 266
 		$resultArray = array_merge(array($stmt), $resultArray);
267 267
 
268
-		if($longtext_exists)
268
+		if ($longtext_exists)
269 269
 		{
270 270
 			mysqli_stmt_store_result($stmt);
271 271
 		}
@@ -273,17 +273,17 @@  discard block
 block discarded – undo
273 273
 		call_user_func_array('mysqli_stmt_bind_result', $resultArray);
274 274
 
275 275
 		$rows = array();
276
-		while(mysqli_stmt_fetch($stmt))
276
+		while (mysqli_stmt_fetch($stmt))
277 277
 		{
278 278
 			$resultObject = new stdClass();
279 279
 
280
-			foreach($resultArray as $key => $value)
280
+			foreach ($resultArray as $key => $value)
281 281
 			{
282
-				if($key === 0)
282
+				if ($key === 0)
283 283
 				{
284 284
 					continue; // Skip stmt object
285 285
 				}
286
-				if(strpos($key, 'repeat_'))
286
+				if (strpos($key, 'repeat_'))
287 287
 				{
288 288
 					$key = substr($key, 6);
289 289
 				}
@@ -295,9 +295,9 @@  discard block
 block discarded – undo
295 295
 
296 296
 		mysqli_stmt_close($stmt);
297 297
 
298
-		if($arrayIndexEndValue)
298
+		if ($arrayIndexEndValue)
299 299
 		{
300
-			foreach($rows as $row)
300
+			foreach ($rows as $row)
301 301
 			{
302 302
 				$output[$arrayIndexEndValue--] = $row;
303 303
 			}
@@ -307,9 +307,9 @@  discard block
 block discarded – undo
307 307
 			$output = $rows;
308 308
 		}
309 309
 
310
-		if(count($output) == 1)
310
+		if (count($output) == 1)
311 311
 		{
312
-			if(isset($arrayIndexEndValue))
312
+			if (isset($arrayIndexEndValue))
313 313
 			{
314 314
 				return $output;
315 315
 			}
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 	 */
331 331
 	function _executeInsertAct($queryObject, $with_values = false)
332 332
 	{
333
-		if($this->use_prepared_statements != 'Y')
333
+		if ($this->use_prepared_statements != 'Y')
334 334
 		{
335 335
 			return parent::_executeInsertAct($queryObject);
336 336
 		}
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
 	 */
349 349
 	function _executeUpdateAct($queryObject, $with_values = false)
350 350
 	{
351
-		if($this->use_prepared_statements != 'Y')
351
+		if ($this->use_prepared_statements != 'Y')
352 352
 		{
353 353
 			return parent::_executeUpdateAct($queryObject);
354 354
 		}
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
 	 */
367 367
 	function _executeDeleteAct($queryObject, $with_values = false)
368 368
 	{
369
-		if($this->use_prepared_statements != 'Y')
369
+		if ($this->use_prepared_statements != 'Y')
370 370
 		{
371 371
 			return parent::_executeDeleteAct($queryObject);
372 372
 		}
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
 	 */
388 388
 	function _executeSelectAct($queryObject, $connection = null, $with_values = false)
389 389
 	{
390
-		if($this->use_prepared_statements != 'Y')
390
+		if ($this->use_prepared_statements != 'Y')
391 391
 		{
392 392
 			return parent::_executeSelectAct($queryObject, $connection);
393 393
 		}
Please login to merge, or discard this patch.