Completed
Pull Request — develop (#17)
by Patrick
09:45
created
Http/Html/class.WebPage.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -125,12 +125,12 @@
 block discarded – undo
125 125
     protected function printHead($response)
126 126
     {
127 127
         $head = '<HEAD><TITLE>'.$this->title.'</TITLE>';
128
-        $head.='<meta name="viewport" content="width=device-width, initial-scale=1.0">';
128
+        $head .= '<meta name="viewport" content="width=device-width, initial-scale=1.0">';
129 129
         foreach($this->headTags as $tag)
130 130
         {
131
-            $head.=$tag."\n";
131
+            $head .= $tag."\n";
132 132
         }
133
-        $head.='</HEAD>';
133
+        $head .= '</HEAD>';
134 134
         return $response->write($head);
135 135
     }
136 136
 
Please login to merge, or discard this patch.