Completed
Push — master ( 55e98a...419fe1 )
by Patrick
06:30 queued 06:11
created
Http/class.WebPage.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
             $this->content['css'] = array($uri);
90 90
             return;
91 91
         }
92
-        array_push($this->content['css'],$uri);
92
+        array_push($this->content['css'], $uri);
93 93
     }
94 94
 
95 95
     /**
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
             $this->content['js'] = array($uri);
105 105
             return;
106 106
         }
107
-        array_push($this->content['js'],$uri);
107
+        array_push($this->content['js'], $uri);
108 108
     }
109 109
 
110 110
     /**
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
         {
147 147
             $data['menu'] = $submenu;
148 148
         }
149
-        $this->content['header']['right'] = array($name => $data)+$this->content['header']['right'];
149
+        $this->content['header']['right'] = array($name => $data) + $this->content['header']['right'];
150 150
     }
151 151
 
152 152
     /** Notification that is green for success */
Please login to merge, or discard this patch.