Skip to content

Commit

Permalink
Set bundled plugins Core requirement to 2.25.0
Browse files Browse the repository at this point in the history
Following introduction of print_icon() API in issue #27828, the bundled
plugins' MantisCore requirement must be increased as they are relying on
the new function.

Fixes #28076
  • Loading branch information
dregad committed Mar 17, 2021
1 parent 9951064 commit 6a95b07
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/MantisCoreFormatting/MantisCoreFormatting.php
Expand Up @@ -36,7 +36,7 @@ function register() {

$this->version = MANTIS_VERSION;
$this->requires = array(
'MantisCore' => '2.1.0',
'MantisCore' => '2.25.0',
);

$this->author = 'MantisBT Team';
Expand Down
2 changes: 1 addition & 1 deletion plugins/MantisGraph/MantisGraph.php
Expand Up @@ -59,7 +59,7 @@ function register() {

$this->version = MANTIS_VERSION;
$this->requires = array(
'MantisCore' => '2.0.0',
'MantisCore' => '2.25.0',
);

$this->author = 'MantisBT Team';
Expand Down
2 changes: 1 addition & 1 deletion plugins/XmlImportExport/XmlImportExport.php
Expand Up @@ -38,7 +38,7 @@ function register() {

$this->version = MANTIS_VERSION;
$this->requires = array(
'MantisCore' => '2.0.0',
'MantisCore' => '2.25.0',
);

$this->author = 'MantisBT Team';
Expand Down

0 comments on commit 6a95b07

Please sign in to comment.