Skip to content

Commit

Permalink
Updated plugin documentation for dependency style
Browse files Browse the repository at this point in the history
  • Loading branch information
amyreese committed Feb 22, 2010
1 parent d9fdb9e commit c3dedbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docbook/developers/en/plugins-building-source.sgml
Expand Up @@ -33,7 +33,7 @@ class ExamplePlugin extends MantisPlugin {

$this->version = '1.0'; # Plugin version string
$this->requires = array( # Plugin dependencies, array of basename => version pairs
'MantisCore' => '1.2', # Should always depend on an appropriate version of MantisBT
'MantisCore' => '1.2.0, <= 1.2.0', # Should always depend on an appropriate version of MantisBT
);

$this->author = ''; # Author/team name
Expand Down
2 changes: 1 addition & 1 deletion docbook/developers/en/plugins-building.sgml
Expand Up @@ -85,7 +85,7 @@ class ExamplePlugin extends MantisPlugin {

$this->version = '1.0'; # Plugin version string
$this->requires = array( # Plugin dependencies, array of basename => version pairs
'MantisCore' => '1.2', # Should always depend on an appropriate version of MantisBT
'MantisCore' => '1.2.0, <= 1.2.0', # Should always depend on an appropriate version of MantisBT
);

$this->author = ''; # Author/team name
Expand Down

0 comments on commit c3dedbb

Please sign in to comment.