Browse Source

Verify that the encryption module exists before setting it

tags/v8.1.0beta1
Joas Schilling 9 years ago
parent
commit
a09df6d453
1 changed files with 7 additions and 6 deletions
  1. 7
    6
      lib/private/encryption/manager.php

+ 7
- 6
lib/private/encryption/manager.php View File

@@ -101,17 +101,17 @@ class Manager implements IManager {
throw new Exceptions\ModuleAlreadyExistsException($id, $displayName);
}

$defaultEncryptionModuleId = $this->getDefaultEncryptionModuleId();

if (empty($defaultEncryptionModuleId)) {
$this->setDefaultEncryptionModule($id);
}

$this->encryptionModules[$id] = [
'id' => $id,
'displayName' => $displayName,
'callback' => $callback,
];

$defaultEncryptionModuleId = $this->getDefaultEncryptionModuleId();

if (empty($defaultEncryptionModuleId)) {
$this->setDefaultEncryptionModule($id);
}
}

/**
@@ -182,6 +182,7 @@ class Manager implements IManager {
*/
public function setDefaultEncryptionModule($moduleId) {
try {
$this->getEncryptionModule($moduleId);
$this->config->setAppValue('core', 'default_encryption_module', $moduleId);
return true;
} catch (\Exception $e) {

Loading…
Cancel
Save