Skip to content

Commit

Permalink
Released version 3.3.21.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Berthereau authored and Daniel Berthereau committed Apr 26, 2021
1 parent b709ae1 commit bc3eaba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/module.ini
Expand Up @@ -8,6 +8,6 @@ author_link = "https://gitlab.com/Daniel-KM"
module_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-BulkImport"
support_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-BulkImport/-/issues"
configurable = true
version = "3.3.21.6"
version = "3.3.21.7"
omeka_version_constraint = "^3.0.0"
dependencies = "Log"
4 changes: 2 additions & 2 deletions src/Generic/AbstractModule.php
Expand Up @@ -77,7 +77,7 @@ public function install(ServiceLocatorInterface $services): void
}
if (!$this->checkAllResourcesToInstall()) {
$message = new Message(
$translator->translate('This module has resources that connot be installed.') // @translate
$translator->translate('This module has resources that cannot be installed.') // @translate
);
throw new ModuleCannotInstallException((string) $message);
}
Expand Down Expand Up @@ -181,7 +181,7 @@ public function getConfigForm(PhpRenderer $renderer)
return '';
}

$form = $services->get('FormElementManager')->get($formClass);
$form = $formManager->get($formClass);
$form->init();
$form->setData($data);
$form->prepare();
Expand Down

0 comments on commit bc3eaba

Please sign in to comment.