This commit is contained in:
parent
ffb7933bda
commit
5182ab6465
|
@ -1690,6 +1690,9 @@ class LAMConfig {
|
|||
* @return String $jobsDatabase database type
|
||||
*/
|
||||
public function getJobsDatabase() {
|
||||
if (empty($this->jobsDatabase)) {
|
||||
return 'SQLite';
|
||||
}
|
||||
return $this->jobsDatabase;
|
||||
}
|
||||
|
||||
|
|
|
@ -419,6 +419,7 @@ function display_LoginPage($config_object, $cfgMain) {
|
|||
$table->addElement($rememberLabel);
|
||||
$table->addElement($gap);
|
||||
$rememberGroup = new htmlGroup();
|
||||
$rememberGroup->alignment = htmlElement::ALIGN_LEFT;
|
||||
$doRemember = false;
|
||||
if (isset($_COOKIE["lam_login_name"])) {
|
||||
$doRemember = true;
|
||||
|
|
Loading…
Reference in New Issue