diff --git a/root/etc/e-smith/templates/usr/share/limesurvey/application/config/config.php/25ProfileHook b/root/etc/e-smith/templates/usr/share/limesurvey/application/config/config.php/25ProfileHook index 3f9153a..d489646 100644 --- a/root/etc/e-smith/templates/usr/share/limesurvey/application/config/config.php/25ProfileHook +++ b/root/etc/e-smith/templates/usr/share/limesurvey/application/config/config.php/25ProfileHook @@ -5,32 +5,30 @@ $lang = substr $lang, 0, 2; $OUT .=<<"EOF"; -if (!function_exists('hook_get_auth_webserver_profile')){ - function hook_get_auth_webserver_profile(\$user_name) { - if (!isset(\$_SERVER['REMOTE_USER'])){ - return false; - } - \$login = \$_SERVER['REMOTE_USER']; - if (isset(\$_SERVER['HTTP_USER_NAME'])){ - \$name = \$_SERVER['HTTP_USER_NAME']; - } - else{ - \$name = \$login; - } - if (isset(\$_SERVER['HTTP_USER_EMAIL'])){ - \$email = \$_SERVER['HTTP_USER_EMAIL']; - } - else{ - \$email = \$login . '\@$DomainName'; - } - return Array( - 'full_name' => \$name, - 'email' => \$email, - 'lang' => '$lang', - 'htmleditormode' => 'inline', - 'templatelist' => 'default,basic,MyOrgTemplate', - ); +function hook_get_auth_webserver_profile(\$user_name) { + if (!isset(\$_SERVER['REMOTE_USER'])){ + return false; } + \$login = \$_SERVER['REMOTE_USER']; + if (isset(\$_SERVER['HTTP_USER_NAME'])){ + \$name = \$_SERVER['HTTP_USER_NAME']; + } + else{ + \$name = \$login; + } + if (isset(\$_SERVER['HTTP_USER_EMAIL'])){ + \$email = \$_SERVER['HTTP_USER_EMAIL']; + } + else{ + \$email = \$login . '\@$DomainName'; + } + return Array( + 'full_name' => \$name, + 'email' => \$email, + 'lang' => '$lang', + 'htmleditormode' => 'inline', + 'templatelist' => 'default,basic,MyOrgTemplate', + ); } if (!function_exists('hook_get_auth_webserver_permissions')){