Skip to content

Commit

Permalink
b94
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeWCS committed Jul 23, 2022
1 parent f20ba56 commit a4b020e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions lf-who-was-here-2_build_changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
### Builds 2.1.3

#### b94
* Vergessen `ext.php` anzupassen.

#### b93 (CDB Validation Release 1)
* Release

Expand Down
2 changes: 1 addition & 1 deletion lukewcs/whowashere/ext.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ext extends \phpbb\extension\base
public function is_enableable()
{
$valid_phpbb = phpbb_version_compare(PHPBB_VERSION, '3.2.10', '>=') && phpbb_version_compare(PHPBB_VERSION, '3.4.0', '<');
$valid_php = phpbb_version_compare(PHP_VERSION, '7.0.0', '>=') && phpbb_version_compare(PHP_VERSION, '8.1.0', '<');
$valid_php = phpbb_version_compare(PHP_VERSION, '7.0.0', '>=') && phpbb_version_compare(PHP_VERSION, '8.2.0', '<');
return $valid_phpbb && $valid_php;
}
}

0 comments on commit a4b020e

Please sign in to comment.