Skip to content

Commit

Permalink
Revert version change
Browse files Browse the repository at this point in the history
Revert the version check until the plugin version check is fixed.  Core plugins require MANTIS_VERSION.
  • Loading branch information
vboctor committed Jan 14, 2017
1 parent b0b3c37 commit 4de2b7f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/constant_inc.php
Expand Up @@ -21,7 +21,7 @@
/**
* Mantis Version
*/
define( 'MANTIS_VERSION', '2.1.0-dev' );
define( 'MANTIS_VERSION', '2.0.0' );
define( 'FILTER_VERSION', 'v9' );

# --- constants -------------------
Expand Down
2 changes: 1 addition & 1 deletion plugins/Gravatar/Gravatar.php
Expand Up @@ -68,7 +68,7 @@ function register() {

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

$this->author = 'Victor Boctor';
Expand Down
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' => MANTIS_VERSION,
);

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

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

$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.1.0',
'MantisCore' => MANTIS_VERSION,
);

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

0 comments on commit 4de2b7f

Please sign in to comment.