Test Failed
Push — master ( e06943...75ce46 )
by Federico
02:37
created
dist/jate/coreEngine.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -4,14 +4,14 @@
 block discarded – undo
4 4
 
5 5
 	//JATE SUFF
6 6
 	require_once			(end($GLOBALS["JATEPath"])."jate/functions/requirer.php");
7
-	requireComponent	("functions/folder.php");
8
-	requireComponent	("modules/JConfig/JConfig.php");
9
-	requireComponents	("functions");
10
-	requireModules		("modules");
7
+	requireComponent("functions/folder.php");
8
+	requireComponent("modules/JConfig/JConfig.php");
9
+	requireComponents("functions");
10
+	requireModules("modules");
11 11
 
12 12
 	//USER STUFF
13
-	requireComponent	("config.php",false);
14
-	requireModules		("modules",false);
15
-	requireComponents	("bundles/models",false);
16
-	requireComponents	("bundles/controllers",false);
13
+	requireComponent("config.php", false);
14
+	requireModules("modules", false);
15
+	requireComponents("bundles/models", false);
16
+	requireComponents("bundles/controllers", false);
17 17
 ?>
Please login to merge, or discard this patch.
dist/jate/functions/block.php 3 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
16 16
 		return jBlockFileMan($_path, $extension, $_parameters);
17 17
 	}
18 18
 
19
+	/**
20
+	 * @param string $_type
21
+	 */
19 22
 	function jBlockFileMan( $_path, $_type, $_parameters = [] ) {
20 23
 		$temp = file_get_contents($_path);
21 24
 		return jBlockParsing($_type, $temp, $_parameters);
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -5,28 +5,28 @@  discard block
 block discarded – undo
5 5
 		return ob_start();
6 6
 	}
7 7
 
8
-	function jBlockClose( $_type = "html", $_parameters = [] ) {
8
+	function jBlockClose($_type = "html", $_parameters = []) {
9 9
 		return jBlockEnd($_type, $_parameters);
10 10
 	}
11 11
 
12
-	function jBlockFile( $_path, $_parameters = [] ) {
12
+	function jBlockFile($_path, $_parameters = []) {
13 13
 		$extension = explode(".", $_path);
14
-		$extension = $extension[count($extension)-1];
14
+		$extension = $extension[count($extension) - 1];
15 15
 		$extension = strtolower($extension);
16 16
 		return jBlockFileMan($_path, $extension, $_parameters);
17 17
 	}
18 18
 
19
-	function jBlockFileMan( $_path, $_type, $_parameters = [] ) {
19
+	function jBlockFileMan($_path, $_type, $_parameters = []) {
20 20
 		$temp = file_get_contents($_path);
21 21
 		return jBlockParsing($_type, $temp, $_parameters);
22 22
 	}
23 23
 
24
-	function jBlockEnd( $_type = "html", $_parameters = [] ) {
24
+	function jBlockEnd($_type = "html", $_parameters = []) {
25 25
 		$text = ob_get_clean();
26 26
 		return jBlockParsing($_type, $text, $_parameters);
27 27
 	}
28 28
 
29
-	function jBlockParsing( $_type = "html", $_string = "", $_parameters = [] ) {
29
+	function jBlockParsing($_type = "html", $_string = "", $_parameters = []) {
30 30
 		switch ($_type) {
31 31
 			case "pug":
32 32
 			case "jade":
@@ -49,9 +49,9 @@  discard block
 block discarded – undo
49 49
 	}
50 50
 
51 51
 	function minifyOutput($_buffer) {
52
-		$search = array ( '/\>[^\S ]+/s', '/[^\S ]+\</s', '/(\s)+/s' );
53
-		$replace = array ( '>', '<', '\\1' );
54
-		if (preg_match("/\<html/i",$_buffer) == 1 && preg_match("/\<\/html\>/i",$_buffer) == 1)
52
+		$search = array('/\>[^\S ]+/s', '/[^\S ]+\</s', '/(\s)+/s');
53
+		$replace = array('>', '<', '\\1');
54
+		if (preg_match("/\<html/i", $_buffer) == 1 && preg_match("/\<\/html\>/i", $_buffer) == 1)
55 55
 			$_buffer = preg_replace($search, $replace, utf8_decode($_buffer));
56 56
 		return utf8_encode($_buffer);
57 57
 	}
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,9 @@
 block discarded – undo
51 51
 	function minifyOutput($_buffer) {
52 52
 		$search = array ( '/\>[^\S ]+/s', '/[^\S ]+\</s', '/(\s)+/s' );
53 53
 		$replace = array ( '>', '<', '\\1' );
54
-		if (preg_match("/\<html/i",$_buffer) == 1 && preg_match("/\<\/html\>/i",$_buffer) == 1)
55
-			$_buffer = preg_replace($search, $replace, utf8_decode($_buffer));
54
+		if (preg_match("/\<html/i",$_buffer) == 1 && preg_match("/\<\/html\>/i",$_buffer) == 1) {
55
+					$_buffer = preg_replace($search, $replace, utf8_decode($_buffer));
56
+		}
56 57
 		return utf8_encode($_buffer);
57 58
 	}
58 59
 ?>
Please login to merge, or discard this patch.
dist/jate/modules/Pug/Pug.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -8,6 +8,10 @@
 block discarded – undo
8 8
 		public function drawFile( $_file, $_parameters = [] ) {
9 9
 			return $this->draw($_file, $_parameters);
10 10
 		}
11
+
12
+		/**
13
+		 * @param string $_text
14
+		 */
11 15
 		public function drawText( $_text, $_parameters = [] ) {
12 16
 			return $this->draw(trim($_text), $_parameters);
13 17
 		}
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,13 +5,13 @@
 block discarded – undo
5 5
 		public function __construct() {
6 6
 			parent::__construct();
7 7
 		}
8
-		public function drawFile( $_file, $_parameters = [] ) {
8
+		public function drawFile($_file, $_parameters = []) {
9 9
 			return $this->draw($_file, $_parameters);
10 10
 		}
11
-		public function drawText( $_text, $_parameters = [] ) {
11
+		public function drawText($_text, $_parameters = []) {
12 12
 			return $this->draw(trim($_text), $_parameters);
13 13
 		}
14
-		public function draw( $_text, $_parameters = [] ) {
14
+		public function draw($_text, $_parameters = []) {
15 15
 			$pug = new Pug\Pug();
16 16
 			$page = $pug->render($_text, $_parameters);
17 17
 			return $page;
Please login to merge, or discard this patch.
dist/jate/modules/Twig/Twig.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -14,6 +14,10 @@
 block discarded – undo
14 14
 			$page = $template->render($_parameters);
15 15
 			return $page;
16 16
 		}
17
+
18
+		/**
19
+		 * @param string $_text
20
+		 */
17 21
 		public function drawText( $_text, $_parameters = [] ) {
18 22
 			$loader = new Twig_Loader_Array([
19 23
 				'index' => $_text
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,16 +5,16 @@
 block discarded – undo
5 5
 		public function __construct() {
6 6
 			parent::__construct();
7 7
 		}
8
-		public function drawFile( $_file, $_parameters = [] ) {
9
-			$loader	= new Twig_Loader_Filesystem('bundles/views');
10
-			$twig		= new Twig_Environment( $loader, [
8
+		public function drawFile($_file, $_parameters = []) {
9
+			$loader = new Twig_Loader_Filesystem('bundles/views');
10
+			$twig = new Twig_Environment($loader, [
11 11
 				'cache' => 'bundles/views',
12 12
 			]);
13 13
 			$template = $twig->loadTemplate($_text);
14 14
 			$page = $template->render($_parameters);
15 15
 			return $page;
16 16
 		}
17
-		public function drawText( $_text, $_parameters = [] ) {
17
+		public function drawText($_text, $_parameters = []) {
18 18
 			$loader = new Twig_Loader_Array([
19 19
 				'index' => $_text
20 20
 			]);
Please login to merge, or discard this patch.
dist/jate/modules/GUI/GUI.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,24 +6,24 @@
 block discarded – undo
6 6
 		public function __construct() {
7 7
 			parent::__construct();
8 8
 		}
9
-		public function init( $_page ) {
9
+		public function init($_page) {
10 10
 			$this->tags = $_page->tags;
11 11
 		}
12
-		public function draw( $_template ) {
12
+		public function draw($_template) {
13 13
 			$page = "";
14
-			$extension = explode(".",$_template);
15
-			$extension = $extension[count($extension)-1];
14
+			$extension = explode(".", $_template);
15
+			$extension = $extension[count($extension) - 1];
16 16
 			$page = $this->parsingFile($_template, $extension);
17 17
 			$render = $this->overlayTag($page);
18 18
 			echo minifyOutput($render);
19 19
 		}
20
-		protected function overlayTag( $_page ) {
21
-			foreach($this->tags as $key => $value)
22
-				if(!is_array($value))
20
+		protected function overlayTag($_page) {
21
+			foreach ($this->tags as $key => $value)
22
+				if (!is_array($value))
23 23
 					$_page = str_replace("<_${key}_>", "$value", $_page);
24 24
 			return $_page;
25 25
 		}
26
-		protected function parsingFile( $_file, $_type = "html" ) {
26
+		protected function parsingFile($_file, $_type = "html") {
27 27
 			switch ($_type) {
28 28
 				case 'pug':
29 29
 				case 'jade':
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,9 +18,10 @@
 block discarded – undo
18 18
 			echo minifyOutput($render);
19 19
 		}
20 20
 		protected function overlayTag( $_page ) {
21
-			foreach($this->tags as $key => $value)
22
-				if(!is_array($value))
21
+			foreach($this->tags as $key => $value) {
22
+							if(!is_array($value))
23 23
 					$_page = str_replace("<_${key}_>", "$value", $_page);
24
+			}
24 25
 			return $_page;
25 26
 		}
26 27
 		protected function parsingFile( $_file, $_type = "html" ) {
Please login to merge, or discard this patch.
dist/jate/modules/Statistic/Statistic.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,18 +1,18 @@
 block discarded – undo
1 1
 <?php
2 2
 	jRequire("../Module/Module.php");
3 3
 	class Statistic extends Module {
4
-		public function __construct( $_webApp ) {
4
+		public function __construct($_webApp) {
5 5
 			parent::__construct();
6 6
 			$pages = [];
7 7
 			$stats = [];
8 8
 			$pages = $_webApp->pages;
9
-			foreach ( $pages as $k => $v ) {
9
+			foreach ($pages as $k => $v) {
10 10
 				$temp = new $v[0]($v[1]);
11 11
 				$temp->addDipendences();
12 12
 				$stats[$k] = [];
13 13
 				$stats[$k]["page"]	= $v[0];
14 14
 				$stats[$k]["css"]		= $temp->data["css"];
15
-				$stats[$k]["js"]		= $temp->data["js"];
15
+				$stats[$k]["js"] = $temp->data["js"];
16 16
 			}
17 17
 			$this->data = $stats;
18 18
 		}
Please login to merge, or discard this patch.
dist/jate/modules/WebApp/WebApp.php 2 patches
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -8,49 +8,49 @@  discard block
 block discarded – undo
8 8
 		public function __construct() {
9 9
 			parent::__construct();
10 10
 			$this->pages = [];
11
-			$this->defaultPage	= ["Page404",[]];
11
+			$this->defaultPage	= ["Page404", []];
12 12
 			$this->currentPage	= null;
13
-			$this->jConfig			= null;
13
+			$this->jConfig = null;
14 14
 		}
15
-		public function addPage( $_page ) {
15
+		public function addPage($_page) {
16 16
 			$param	= [];
17 17
 			$path		= $_page;
18 18
 			$class	= $_page;
19
-			if(is_array($_page)) {
19
+			if (is_array($_page)) {
20 20
 				$path		= $_page[0];
21 21
 				$class	= $_page[1];
22
-				if(isset($_page[2]))
22
+				if (isset($_page[2]))
23 23
 					$param = $_page[2];
24 24
 			}
25 25
 			$this->pages[$path] = [$class, $param];
26 26
 			return $this->pages[$path];
27 27
 		}
28
-		public function addPages( $_pages ) {
28
+		public function addPages($_pages) {
29 29
 			foreach ($_pages as $i)
30 30
 				$this->addPage($i);
31 31
 		}
32 32
 		public function fetchPage(  ) {
33 33
 			$router = new Router();
34
-			$router->parameters = [ "app" => &$this->jConfig, "page" => null];
34
+			$router->parameters = ["app" => &$this->jConfig, "page" => null];
35 35
 			$stack = $router->getPage();
36 36
 			$parameters = [];
37
-			$temp				= $this->defaultPage;
37
+			$temp = $this->defaultPage;
38 38
 			foreach ($this->pages as $key => $value) {
39 39
 				$variables = $this->pathSeeker(explode("/", $key), $stack);
40
-				if(is_array($variables)) {
40
+				if (is_array($variables)) {
41 41
 					$temp = $value;
42 42
 					$parameters = $variables;
43 43
 					break;
44 44
 				}
45 45
 			}
46
-			if( isset($temp[1]) && is_array($temp[1]) )
46
+			if (isset($temp[1]) && is_array($temp[1]))
47 47
 				$temp[1] = array_merge($temp[1], $parameters);
48 48
 			else
49 49
 				$temp[1] = $parameters;
50 50
 			$this->currentPage = new $temp[0](["app" => $this->jConfig, "page" => $temp[1]]);
51 51
 			return $this->currentPage;
52 52
 		}
53
-		public function setDefaultPage( $_page ) {
53
+		public function setDefaultPage($_page) {
54 54
 			$this->defaultPage = $this->addPage($_page);
55 55
 		}
56 56
 		public function draw() {
@@ -59,28 +59,28 @@  discard block
 block discarded – undo
59 59
 			$gui->init($this->currentPage);
60 60
 			$gui->draw($this->currentPage->data["template"]);
61 61
 		}
62
-		public function pathSeeker( $_path, $_url ) {
62
+		public function pathSeeker($_path, $_url) {
63 63
 			$urlLength = count($_url);
64 64
 			$cont = 0;
65 65
 			$variables = [];
66 66
 			$pathLength = count($_path);
67
-			if($urlLength == $pathLength) {
68
-				while($cont < $urlLength) {
69
-					if( $_path[$cont] == $_url[$cont] )
67
+			if ($urlLength == $pathLength) {
68
+				while ($cont < $urlLength) {
69
+					if ($_path[$cont] == $_url[$cont])
70 70
 						$cont++;
71
-					else if( strpos($_path[$cont], "\$") !== false ) {
71
+					else if (strpos($_path[$cont], "\$") !== false) {
72 72
 						$variables[str_replace('$', "", $_path[$cont])] = $_url[$cont];
73 73
 						$cont++;
74 74
 					} else break;
75 75
 				}
76
-				if($cont == $urlLength)
76
+				if ($cont == $urlLength)
77 77
 					return $variables;
78 78
 			}
79 79
 			return null;
80 80
 		}
81
-		public function newConfig( $_path = "config/") {
81
+		public function newConfig($_path = "config/") {
82 82
 			$this->jConfig = new JConfig();
83
-			$this->jConfig->import("${_path}connection.json","connection");
83
+			$this->jConfig->import("${_path}connection.json", "connection");
84 84
 			$this->jConfig->import("${_path}misc.json");
85 85
 			$this->jConfig->import("${_path}router.json");
86 86
 		}
Please login to merge, or discard this patch.
Braces   +20 added lines, -14 removed lines patch added patch discarded remove patch
@@ -19,15 +19,17 @@  discard block
 block discarded – undo
19 19
 			if(is_array($_page)) {
20 20
 				$path		= $_page[0];
21 21
 				$class	= $_page[1];
22
-				if(isset($_page[2]))
23
-					$param = $_page[2];
22
+				if(isset($_page[2])) {
23
+									$param = $_page[2];
24
+				}
24 25
 			}
25 26
 			$this->pages[$path] = [$class, $param];
26 27
 			return $this->pages[$path];
27 28
 		}
28 29
 		public function addPages( $_pages ) {
29
-			foreach ($_pages as $i)
30
-				$this->addPage($i);
30
+			foreach ($_pages as $i) {
31
+							$this->addPage($i);
32
+			}
31 33
 		}
32 34
 		public function fetchPage(  ) {
33 35
 			$router = new Router();
@@ -43,10 +45,11 @@  discard block
 block discarded – undo
43 45
 					break;
44 46
 				}
45 47
 			}
46
-			if( isset($temp[1]) && is_array($temp[1]) )
47
-				$temp[1] = array_merge($temp[1], $parameters);
48
-			else
49
-				$temp[1] = $parameters;
48
+			if( isset($temp[1]) && is_array($temp[1]) ) {
49
+							$temp[1] = array_merge($temp[1], $parameters);
50
+			} else {
51
+							$temp[1] = $parameters;
52
+			}
50 53
 			$this->currentPage = new $temp[0](["app" => $this->jConfig, "page" => $temp[1]]);
51 54
 			return $this->currentPage;
52 55
 		}
@@ -66,15 +69,18 @@  discard block
 block discarded – undo
66 69
 			$pathLength = count($_path);
67 70
 			if($urlLength == $pathLength) {
68 71
 				while($cont < $urlLength) {
69
-					if( $_path[$cont] == $_url[$cont] )
70
-						$cont++;
71
-					else if( strpos($_path[$cont], "\$") !== false ) {
72
+					if( $_path[$cont] == $_url[$cont] ) {
73
+											$cont++;
74
+					} else if( strpos($_path[$cont], "\$") !== false ) {
72 75
 						$variables[str_replace('$', "", $_path[$cont])] = $_url[$cont];
73 76
 						$cont++;
74
-					} else break;
77
+					} else {
78
+						break;
79
+					}
80
+				}
81
+				if($cont == $urlLength) {
82
+									return $variables;
75 83
 				}
76
-				if($cont == $urlLength)
77
-					return $variables;
78 84
 			}
79 85
 			return null;
80 86
 		}
Please login to merge, or discard this patch.
dist/jate/modules/Connection/Connection.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -7,19 +7,19 @@
 block discarded – undo
7 7
 			parent::__construct();
8 8
 			$args = func_get_args();
9 9
 			$count = func_num_args();
10
-			if (method_exists($this,$func='__construct'.$count))
11
-				call_user_func_array(array($this,$func),$args);
10
+			if (method_exists($this, $func = '__construct'.$count))
11
+				call_user_func_array(array($this, $func), $args);
12 12
 		}
13 13
 		public function __construct0() {
14 14
 			$this->database = null;
15 15
 		}
16
-		public function __construct4( $_srv, $_db, $_usr, $_pass) {
16
+		public function __construct4($_srv, $_db, $_usr, $_pass) {
17 17
 			$this->connection = "mysql:host=$_srv;dbname=$_db";
18
-			$this->database = new PDO( $this->connection, $_usr, $_pass,array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES 'utf8'"));
18
+			$this->database = new PDO($this->connection, $_usr, $_pass, array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES 'utf8'"));
19 19
 			$this->info = [];
20
-			$this->info["server"]		= $_srv;
20
+			$this->info["server"] = $_srv;
21 21
 			$this->info["database"]	= $_db;
22
-			$this->info["user"]			= $_usr;
22
+			$this->info["user"] = $_usr;
23 23
 			$this->info["password"]	= $_pass;
24 24
 		}
25 25
 	}
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,9 @@
 block discarded – undo
7 7
 			parent::__construct();
8 8
 			$args = func_get_args();
9 9
 			$count = func_num_args();
10
-			if (method_exists($this,$func='__construct'.$count))
11
-				call_user_func_array(array($this,$func),$args);
10
+			if (method_exists($this,$func='__construct'.$count)) {
11
+							call_user_func_array(array($this,$func),$args);
12
+			}
12 13
 		}
13 14
 		public function __construct0() {
14 15
 			$this->database = null;
Please login to merge, or discard this patch.
dist/status.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -22,17 +22,17 @@  discard block
 block discarded – undo
22 22
 					$percent;
23 23
 					foreach (getGitLog() as $i) {
24 24
 						$cont++;
25
-						if($cont % $nPerCol == 1)
25
+						if ($cont % $nPerCol == 1)
26 26
 							echo '<div class="row">';
27
-						if(isset($i["tag"])) {
28
-							$percent = explode(".",$i["tag"]);
27
+						if (isset($i["tag"])) {
28
+							$percent = explode(".", $i["tag"]);
29 29
 							$percent = 100 * intval($percent[0]) + 10 * intval($percent[1]) + intval($percent[2]);
30 30
 						}
31 31
 					?>
32 32
 						<div class="col-lg-<?=$dim?>">
33 33
 							<div class="well well-sm miniblock">
34 34
 								<div class="autor"><b>Autor:</b> <?=$i["author"]?><br></div>
35
-								<div class="tag"><b>Tag:</b> <?php if(isset($i["tag"])) echo $i["tag"]?><br></div>
35
+								<div class="tag"><b>Tag:</b> <?php if (isset($i["tag"])) echo $i["tag"]?><br></div>
36 36
 								<div class="date"><b>Date:</b> <?=$i["date"]?><br></div>
37 37
 								<div class="message"><b>Message:</b> <?=$i["message"]?><br></div>
38 38
 								<div class="progress">
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 							</div>
45 45
 						</div>
46 46
 					<?php
47
-					if($cont % $nPerCol == 0)
47
+					if ($cont % $nPerCol == 0)
48 48
 						echo '</div>';
49 49
 					} ?>
50 50
 				</div>
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,8 +22,9 @@  discard block
 block discarded – undo
22 22
 					$percent;
23 23
 					foreach (getGitLog() as $i) {
24 24
 						$cont++;
25
-						if($cont % $nPerCol == 1)
26
-							echo '<div class="row">';
25
+						if($cont % $nPerCol == 1) {
26
+													echo '<div class="row">';
27
+						}
27 28
 						if(isset($i["tag"])) {
28 29
 							$percent = explode(".",$i["tag"]);
29 30
 							$percent = 100 * intval($percent[0]) + 10 * intval($percent[1]) + intval($percent[2]);
@@ -32,7 +33,8 @@  discard block
 block discarded – undo
32 33
 						<div class="col-lg-<?=$dim?>">
33 34
 							<div class="well well-sm miniblock">
34 35
 								<div class="autor"><b>Autor:</b> <?=$i["author"]?><br></div>
35
-								<div class="tag"><b>Tag:</b> <?php if(isset($i["tag"])) echo $i["tag"]?><br></div>
36
+								<div class="tag"><b>Tag:</b> <?php if(isset($i["tag"])) {
37
+	echo $i["tag"]?><br></div>
36 38
 								<div class="date"><b>Date:</b> <?=$i["date"]?><br></div>
37 39
 								<div class="message"><b>Message:</b> <?=$i["message"]?><br></div>
38 40
 								<div class="progress">
@@ -46,6 +48,7 @@  discard block
 block discarded – undo
46 48
 					<?php
47 49
 					if($cont % $nPerCol == 0)
48 50
 						echo '</div>';
51
+}
49 52
 					} ?>
50 53
 				</div>
51 54
 			</div>
Please login to merge, or discard this patch.