preselect last used profile
This commit is contained in:
parent
bf7384104a
commit
4a12632936
|
@ -3,7 +3,7 @@
|
||||||
$Id$
|
$Id$
|
||||||
|
|
||||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||||
Copyright (C) 2003 - 2013 Roland Gruber
|
Copyright (C) 2003 - 2014 Roland Gruber
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -158,7 +158,12 @@ echo $_SESSION['header'];
|
||||||
$fieldsEnabled = false;
|
$fieldsEnabled = false;
|
||||||
if (sizeof($files) > 0) {
|
if (sizeof($files) > 0) {
|
||||||
$profiles = $files;
|
$profiles = $files;
|
||||||
$selectedProfile[] = $conf->default;
|
if (!empty($_COOKIE["lam_default_profile"]) && in_array($_COOKIE["lam_default_profile"], $files)) {
|
||||||
|
$selectedProfile[] = $_COOKIE["lam_default_profile"];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$selectedProfile[] = $conf->default;
|
||||||
|
}
|
||||||
$fieldsEnabled = true;
|
$fieldsEnabled = true;
|
||||||
}
|
}
|
||||||
$select = new htmlSelect('filename', $profiles, $selectedProfile);
|
$select = new htmlSelect('filename', $profiles, $selectedProfile);
|
||||||
|
|
Loading…
Reference in New Issue