From 6efdaa1b6a504820d8da6918e0b8802ac91a905b Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Sat, 12 Jun 2021 08:56:48 -0700 Subject: [PATCH] Fix minimum phpBB version check --- ext.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext.php b/ext.php index e3a3062..9526090 100644 --- a/ext.php +++ b/ext.php @@ -20,7 +20,7 @@ class ext extends \phpbb\extension\base * The current phpBB version should meet or exceed * the minimum version required by this extension: * - * Requires phpBB 3.1.3 due to newly added core events. + * Requires phpBB 3.2.0. * * @return bool * @access public @@ -28,7 +28,7 @@ class ext extends \phpbb\extension\base public function is_enableable() { $config = $this->container->get('config'); - return phpbb_version_compare($config['version'], '3.1.3', '>='); + return phpbb_version_compare($config['version'], '3.2.0', '>='); } /**