Completed
Pull Request — 2.0.x (#6)
by Andrew
03:43
created
classes/Ingenerator/View/Layout.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      */
48 48
     public function var_page()
49 49
     {
50
-        if ( is_string($this->template))
50
+        if (is_string($this->template))
51 51
         {
52 52
             $class = 'View_Template_'.$this->template;
53 53
             if ( ! class_exists($class))
Please login to merge, or discard this patch.
classes/Kohana/View/Stream/Wrapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             // If this block is not the special <?= block return
126 126
             if ($matches[1] !== '=')
127 127
             {
128
-                return '<?php '. $code . '?>';
128
+                return '<?php '.$code.'?>';
129 129
             }
130 130
 
131 131
             // Remove trailing ; characters
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
             else
139 139
             {
140 140
                 // Remove the "turn off escape" character
141
-                return '<?php echo '.substr($var, strlen($this->_raw_output_char), strlen($var)-1).'; ?>';
141
+                return '<?php echo '.substr($var, strlen($this->_raw_output_char), strlen($var) - 1).'; ?>';
142 142
             }
143 143
 	}
144 144
 
Please login to merge, or discard this patch.
views/template/global.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
11 11
 <html>
12 12
     <head>
13
-        <title><?=$title;?></title>
13
+        <title><?=$title; ?></title>
14 14
     </head>
15 15
     <body>
16
-        <?=$body;?>
16
+        <?=$body; ?>
17 17
     </body>
18 18
 </html>
Please login to merge, or discard this patch.