Completed
Push — master ( 10ca4a...489916 )
by Cody
24s queued 12s
created
lib/MiniTemplator.class.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -315,18 +315,18 @@  discard block
 block discarded – undo
315 315
     switch (strtoupper($cmd)) {
316 316
     case '$BEGINBLOCK':
317 317
      if (!$this->processBeginBlockCmd($parms, $cmdTPosBegin, $cmdTPosEnd)) {
318
-             return false;
319
-     }
318
+                return false;
319
+        }
320 320
         break;
321 321
     case '$ENDBLOCK':
322 322
      if (!$this->processEndBlockCmd($parms, $cmdTPosBegin, $cmdTPosEnd)) {
323
-             return false;
324
-     }
323
+                return false;
324
+        }
325 325
         break;
326 326
     case '$INCLUDE':
327 327
      if (!$this->processincludeCmd($parms, $cmdTPosBegin, $cmdTPosEnd)) {
328
-             return false;
329
-     }
328
+                return false;
329
+        }
330 330
         $resumeFromStart = true;
331 331
         break;
332 332
     default:
@@ -848,8 +848,8 @@  discard block
 block discarded – undo
848 848
     switch ($this->outputMode) {
849 849
     case 0:            // output to PHP output stream
850 850
      if (!print($s)) {
851
-             $this->outputError = true;
852
-     }
851
+                $this->outputError = true;
852
+        }
853 853
         break;
854 854
     case 1:            // output to file
855 855
      $rc = fwrite($this->outputFileHandle, $s);
Please login to merge, or discard this patch.