From f098113720d9e576e342cd76c4df05f6af298b4c Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Fri, 21 Aug 2015 17:50:31 +0200 Subject: [PATCH] Fix indent --- .../includes/class/class.LSsession.php | 26 +++++++++---------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/public_html/includes/class/class.LSsession.php b/public_html/includes/class/class.LSsession.php index 1023dcab..29eeda20 100644 --- a/public_html/includes/class/class.LSsession.php +++ b/public_html/includes/class/class.LSsession.php @@ -2413,18 +2413,16 @@ class LSsession { } } - /** - * Set globals from the ldap server - * - * @retval void - */ - public static function setGlobals() { - if ( isset(self :: $ldapServer['globals'])) { - foreach(self :: $ldapServer['globals'] as $key => $value) { - $GLOBALS[$key] = $value; - } - } - } -} + /** + * Set globals from the ldap server + * + * @retval void + */ + public static function setGlobals() { + if ( isset(self :: $ldapServer['globals'])) { + foreach(self :: $ldapServer['globals'] as $key => $value) { + $GLOBALS[$key] = $value; + } + } + } -?>