Skip to content

Commit

Permalink
Released version 3.3.45.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Berthereau authored and Daniel Berthereau committed Sep 19, 2022
1 parent 130bf1c commit f8de809
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
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-Next"
support_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-Next/-/issues"
configurable = false
version = "3.3.44"
version = "3.3.45"
omeka_version_constraint = "^3.1.0"
9 changes: 9 additions & 0 deletions data/scripts/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,4 +203,13 @@
if (version_compare($oldVersion, '3.3.45', '<')) {
$settings->set('menu_property_itemset', $settings->get('next_property_itemset'));
$settings->delete('next_property_itemset');

$messenger = new Messenger();
$message = new Message(
'The helper "PrimaryItemSet" was moved to module %sMenu%s.', // @translate
'<a href="https://gitlab.com/Daniel-KM/Omeka-S-module-Menu" target="_blank">',
'</a>'
);
$message->setEscapeHtml(false);
$messenger->addWarning($message);
}

0 comments on commit f8de809

Please sign in to comment.