Skip to content

Commit e558199

Browse files
committed
Correct the phpBB minimum requirement
1 parent 7d0b31b commit e558199

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"extra": {
4141
"display-name": "phpBB Ideas",
4242
"soft-require": {
43-
"phpbb/phpbb": ">=3.2.0,<3.4"
43+
"phpbb/phpbb": ">=3.2.1,<3.4"
4444
}
4545
}
4646
}

ext.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ class ext extends \phpbb\extension\base
2525
* The current phpBB version should meet or exceed
2626
* the minimum version required by this extension:
2727
*
28-
* Requires phpBB 3.2.0
28+
* Requires phpBB 3.2.1 due to use of $event->update_subarray();
2929
*
3030
* @return bool
3131
* @access public
3232
*/
3333
public function is_enableable()
3434
{
35-
return phpbb_version_compare(PHPBB_VERSION, '3.2.0', '>=');
35+
return phpbb_version_compare(PHPBB_VERSION, '3.2.1', '>=');
3636
}
3737
}

0 commit comments

Comments
 (0)