This commit is contained in:
Roland Gruber 2015-08-26 16:57:22 +00:00
parent ffb7933bda
commit 5182ab6465
2 changed files with 4 additions and 0 deletions

View File

@ -1690,6 +1690,9 @@ class LAMConfig {
* @return String $jobsDatabase database type
*/
public function getJobsDatabase() {
if (empty($this->jobsDatabase)) {
return 'SQLite';
}
return $this->jobsDatabase;
}

View File

@ -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;