Completed
Push — master ( 40b8dd...0c2ef0 )
by Patrick
08:55
created
Http/class.WebPage.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
 
35 35
         $aboutUrl = $this->settings->getGlobalSetting('about_url', $wwwUri.'/about');
36 36
         $this->content['header']['right']['About'] = array(
37
-          'url' => $aboutUrl,
38
-          'menu' => $this->settings->getGlobalSetting('about_menu', array(
37
+            'url' => $aboutUrl,
38
+            'menu' => $this->settings->getGlobalSetting('about_menu', array(
39 39
             'Burning Flipside' => $wwwUri.'/about/event',
40 40
             'AAR, LLC' => $wwwUri.'/organization/aar',
41 41
             'Privacy Policy' => $wwwUri.'/about/privacy'
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         $this->resetUrl = $this->settings->getGlobalSetting('reset_url', $this->profilesUrl.'/reset.php');
47 47
         $this->loginUrl = $this->settings->getGlobalSetting('login_url', $this->profilesUrl.'/login.php');
48 48
 
49
-	if($this->user === false || $this->user === null)
49
+    if($this->user === false || $this->user === null)
50 50
         {
51 51
             if(isset($_SERVER['REQUEST_URI']) && strstr($_SERVER['REQUEST_URI'], 'logout.php') === false)
52 52
             {
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     {
159 159
         if(!isset($this->content['body']))
160 160
         {
161
-          $this->content['body'] = $this->body;
161
+            $this->content['body'] = $this->body;
162 162
         }
163 163
         return $this->twig->render($this->templateName, $this->content);
164 164
     }
Please login to merge, or discard this patch.
Http/class.LoginRequiredPage.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     {
25 25
         if($this->user === false || $this->user === null)
26 26
         {
27
-          $this->content['body'] = '
27
+            $this->content['body'] = '
28 28
             <div id="content">
29 29
               <div class="row">
30 30
                 <div class="col-lg-12">
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         }
37 37
         else if(!isset($this->content['body']))
38 38
         {
39
-          $this->content['body'] = $this->body;
39
+            $this->content['body'] = $this->body;
40 40
         }
41 41
         return $this->twig->render($this->templateName, $this->content);
42 42
     }
Please login to merge, or discard this patch.