diff options
author | Bryan Haase <bryan.haase@gmail.com> | 2011-07-27 08:47:10 -0500 |
---|---|---|
committer | Bryan Haase <bryan.haase@gmail.com> | 2011-07-27 08:47:10 -0500 |
commit | 2c189c8cb110bc293acbb88c6930e636e19db5d4 (patch) | |
tree | 6b17b3561e896ff3e943cc0e30cfc40373cef7df /usr/local | |
parent | e3d357047cfb5e12d9dc1cb4121d20f604c8a29a (diff) | |
download | pfsense-2c189c8cb110bc293acbb88c6930e636e19db5d4.zip pfsense-2c189c8cb110bc293acbb88c6930e636e19db5d4.tar.gz |
Improved ipsec ldap xauth
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/vpn_ipsec_mobile.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr/local/www/vpn_ipsec_mobile.php b/usr/local/www/vpn_ipsec_mobile.php index 34b72d1..9d81c53 100755 --- a/usr/local/www/vpn_ipsec_mobile.php +++ b/usr/local/www/vpn_ipsec_mobile.php @@ -358,11 +358,13 @@ function login_banner_change() { <? foreach ($config['system']['authserver'] as $authcfg) { if ($authcfg['type'] == 'ldap') { - print '<option value="ldap">ldap</option>'; + $selected = ""; + if ($pconfig['user_source'] == $authcfg['name']) $selected = "selected"; + print '<option value="'.$authcfg['name'].'" '. $selected.'>'.$authcfg['name'].'</option>'; } } ?> - <option value="system"><?=gettext("system"); ?></option> + <option value="system" <?php if ($pconfig['user_source'] == 'system') echo "selected"; ?>><?=gettext("system"); ?></option> </select> </td> </tr> |