$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 {
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(
'T' => 'MTA err',
'C' => 'Clean'
);
-
+
$string = $table[$code];
if (empty($string))
$string = 'Unknown';