Skip to content

Commit

Permalink
Released version 3.15.13.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Berthereau authored and Daniel Berthereau committed Jul 26, 2021
1 parent 7ea83f9 commit 81ba3df
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ images or to get mime type from files. After, you have five possibilities:
For more explanation, try the [test file].


TODO
----

- [ ] Manage renaming during background bulk import.


Warning
-------

Expand Down
2 changes: 1 addition & 1 deletion config/module.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ author_link = "https://gitlab.com/Daniel-KM"
module_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-ArchiveRepertory"
support_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-ArchiveRepertory/-/issues"
configurable = true
version = "3.15.12.3"
version = "3.15.13.3"
omeka_version_constraint = "^3.0.0"
4 changes: 2 additions & 2 deletions src/Generic/AbstractModule.php
Original file line number Diff line number Diff line change
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 81ba3df

Please sign in to comment.