Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ext.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ class ext extends \phpbb\extension\base
* The current phpBB version should meet or exceed
* the minimum version required by this extension:
*
* Requires phpBB 3.2.0.
* Requires phpBB 4.0.0 due to usage of the new messenger class
*
* @return bool
* @access public
*/
public function is_enableable()
{
return phpbb_version_compare(PHPBB_VERSION, '3.2.0', '>=');
return phpbb_version_compare(PHPBB_VERSION, '4.0.0-dev', '>=') && phpbb_version_compare(PHPBB_VERSION, '4.1.0-dev', '<');
}

/**
Expand Down