Fix indent

This commit is contained in:
Benjamin Renard 2015-08-21 17:50:31 +02:00
parent 28fc35da49
commit f098113720

View file

@ -2413,18 +2413,16 @@ class LSsession {
} }
} }
/** /**
* Set globals from the ldap server * Set globals from the ldap server
* *
* @retval void * @retval void
*/ */
public static function setGlobals() { public static function setGlobals() {
if ( isset(self :: $ldapServer['globals'])) { if ( isset(self :: $ldapServer['globals'])) {
foreach(self :: $ldapServer['globals'] as $key => $value) { foreach(self :: $ldapServer['globals'] as $key => $value) {
$GLOBALS[$key] = $value; $GLOBALS[$key] = $value;
} }
} }
} }
}
?>