Skip to content

Commit

Permalink
fixed missing =
Browse files Browse the repository at this point in the history
  • Loading branch information
LMOspaceace committed Feb 12, 2017
1 parent 624c0dd commit c2cb77c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ class ext extends \phpbb\extension\base
public function is_enableable()
{
$config = $this->container->get('config');
return (version_compare($config['version'], '3.1.0', '>=') && (version_compare(PHP_VERSION, '5.4.*', '>')));
return (version_compare($config['version'], '3.1.0', '>=') && (version_compare(PHP_VERSION, '5.4.*', '>=')));
}
}

0 comments on commit c2cb77c

Please sign in to comment.