Completed
Pull Request — develop (#17)
by Patrick
09:45
created
Http/Html/class.FlipPage.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -365,7 +365,6 @@
 block discarded – undo
365 365
     /**
366 366
      * Draw the page
367 367
      *
368
-     * @param boolean $header Draw the header
369 368
      */
370 369
     public function printPage($response)
371 370
     {
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -727,7 +727,7 @@
 block discarded – undo
727 727
      */
728 728
     private function addJSGlobals()
729 729
     {
730
-      $this->body = $this->body.'<script>
730
+        $this->body = $this->body.'<script>
731 731
 var profilesUrl = \''.$this->profilesUrl.'\'
732 732
 var loginUrl = \''.$this->loginUrl.'\'
733 733
 var logoutUrl = \''.$this->logoutUrl.'\'
Please login to merge, or discard this patch.
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.