Fix formatting errors
authorTim Düsterhus <duesterhus@woltlab.com>
Tue, 10 Jun 2014 17:40:51 +0000 (19:40 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Tue, 10 Jun 2014 17:41:05 +0000 (19:41 +0200)
wcfsetup/install/files/lib/acp/page/TemplateDiffPage.class.php
wcfsetup/install/files/lib/util/Diff.class.php

index ce629848612b7f287da52cbeb4aecefc257add03..c559df47089e4955a01152326d43be8fe8a1bec4 100644 (file)
@@ -88,7 +88,7 @@ class TemplateDiffPage extends AbstractPage {
                // build template group hierarchie (template groups that are parents of the template group of the selected template)
                $this->templateGroupHierarchie = array();
                $templateGroup = $templateGroupList->search($this->template->templateGroupID);
-               while($templateGroup !== null) {
+               while ($templateGroup !== null) {
                        $this->templateGroupHierarchie[$templateGroup->templateGroupID] = array('group' => $templateGroup, 'hasTemplate' => false);
                        $templateGroup = $templateGroupList->search($templateGroup->parentTemplateGroupID);
                }
index f13634a02c10d6a5c6db442fe41e8daf7d3cdcb9..a4d51a8c0b85172a3e506755ef01616cfd92bcbd 100644 (file)
@@ -155,8 +155,12 @@ class Diff {
                        $y--;
                }
                
-               for ($i = 0; $i < $offsetStart; $i++) $lcs[$i] = $this->a[$i];
-               for ($i = 0; $i < $offsetEnd; $i++) $lcs[$lcsLength + $offsetStart + $i] = $this->a[$this->sizeA - 1 - ($offsetEnd - 1 - $i)];
+               for ($i = 0; $i < $offsetStart; $i++) {
+                       $lcs[$i] = $this->a[$i];
+               }
+               for ($i = 0; $i < $offsetEnd; $i++) {
+                       $lcs[$lcsLength + $offsetStart + $i] = $this->a[$this->sizeA - 1 - ($offsetEnd - 1 - $i)];
+               }
                
                return $lcs;
        }