Completed
Push — master ( 63bf24...09bbc1 )
by Jean-Christophe
03:16
created
Ajax/bootstrap/html/HtmlGridsystem.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 	public function getRow($index,$force=true){
40 40
 		if($index<sizeof($this->rows)){
41 41
 			$result=$this->rows[$index-1];
42
-		}else if ($force){
42
+		} else if ($force){
43 43
 			$this->setNumRows($index);
44 44
 			$result=$this->rows[$index-1];
45 45
 		}
Please login to merge, or discard this patch.
Ajax/bootstrap/html/content/HtmlGridRow.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 	public function getCol($index,$force=true){
35 35
 		if($index<sizeof($this->cols)+1){
36 36
 			$result=$this->cols[$index-1];
37
-		}else if ($force){
37
+		} else if ($force){
38 38
 			$result=$this->addColAt(CssSize::SIZE_MD,1,$index);
39 39
 			$this->cols[]=$result;
40 40
 		}
Please login to merge, or discard this patch.