Use correct comparison for the PHP version check.
When using `>=`, PHP version 5.3.3 would be recognized as too old, while corresponding to the requirements. Using `>` fixes this, as it restricts the outdated notice to anything __below__ 5.3.3.
Loading
Please register or sign in to comment