diff options
author | Renato Botelho <renato@netgate.com> | 2016-10-12 12:33:33 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-10-12 12:33:33 -0300 |
commit | 83f7fabde97457b8e50d4bf304c2c855f022118c (patch) | |
tree | 76c7badfd5ab7f4c50551e424b6b698f3d9003ed | |
parent | 90d0e0e057fa1743e8d7356cd01b91d337a30a7a (diff) | |
parent | db0c1e142c98a6253204d69218557b91a8754337 (diff) | |
download | pfsense-83f7fabde97457b8e50d4bf304c2c855f022118c.zip pfsense-83f7fabde97457b8e50d4bf304c2c855f022118c.tar.gz |
Merge pull request #3177 from brunostein/fix_authmode_translated
-rw-r--r-- | src/usr/local/www/system_usermanager_settings.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/local/www/system_usermanager_settings.php b/src/usr/local/www/system_usermanager_settings.php index 5101526..5a4e322 100644 --- a/src/usr/local/www/system_usermanager_settings.php +++ b/src/usr/local/www/system_usermanager_settings.php @@ -188,8 +188,8 @@ $section->addInput(new Form_Input( 'risk!'); $auth_servers = array(); -foreach (auth_get_authserver_list() as $auth_server) { - $auth_servers[ $auth_server['name'] ] = $auth_server['name']; +foreach (auth_get_authserver_list() as $idx_authserver => $auth_server) { + $auth_servers[ $idx_authserver ] = $auth_server['name']; } $section->addInput(new Form_Select( |