]> git.datanom.net - qtadmin.git/commitdiff
fix indentation
authorMichael Rasmussen <mir@datanom.net>
Sun, 31 May 2015 13:16:55 +0000 (15:16 +0200)
committerMichael Rasmussen <mir@datanom.net>
Sun, 31 May 2015 13:16:55 +0000 (15:16 +0200)
lib/utils.inc.php

index ec842b873b6657a7d7b18e2662ed75c8051bbdb4..47042b781725ca81d3affbed5a63c0999b4b5c0f 100644 (file)
@@ -133,14 +133,14 @@ class Utils {
                 $info = @ldap_get_entries($ds, $sr); // array
                 if ($info['count'] > 0) {
                                        $_SESSION['user'] = $user;
-                               $this->user = $user;
+                                       $this->user = $user;
                                        $result = true;
                                        $this->loginStatus = 'OK';
                                        $admin = 'NO';
                                        if (isset($info[0]['domainglobaladmin'])) {
                                                $admin = $info[0]['domainglobaladmin'][0];
                                                $admin = strtoupper($admin);
-                                       } 
+                                       }
                                        $this->is_admin = ($admin == 'YES') ? true : false;
                                        $_SESSION['is_admin'] = $this->is_admin;
                 } else {
@@ -203,11 +203,11 @@ class Utils {
                        global $CFG;
 
                        $timeout = $CFG->session_timeout * 60 * 1000;
-            $this->heading = str_replace('__TITLE__', $heading, $this->heading);
+                       $this->heading = str_replace('__TITLE__', $heading, $this->heading);
                        $this->header = str_replace('__TITLE__', $heading, $this->header);
                        $this->header = str_replace('__ROOT__', $CFG->wwwroot, $this->header);
                        $this->header = str_replace('__TIMEOUT__', $timeout, $this->header);
-        }
+               }
 
                public function convertContent($code) {
                        $table = array(
@@ -222,7 +222,7 @@ class Utils {
                                'T' => 'MTA err',
                                'C' => 'Clean'
                        );
-                       
+
                        $string = $table[$code];
                        if (empty($string))
                                $string = 'Unknown';
This page took 0.034117 seconds and 5 git commands to generate.