if (substr_count($info['php'], '.') < 2) {
$php_required .= '.*';
}
$php_required is never initialized so the value is either ".*" or "" so the user message reads funny since there is an incorrect value (or none) placed in it.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | 894614-php-compatibility.patch | 710 bytes | boombatower |
Comments
Comment #1
boombatower commentedComment #2
solotandem commentedMakes sense.
Comment #3
sun#1: 894614-php-compatibility.patch queued for re-testing.
Comment #4
dave reidMarked #806312: This module requires PHP version .* and is incompatible with PHP version as a duplicate of this issue since this one is RTBC.
Comment #5
dries commentedGood catch, boombatower. Committed to CVS HEAD. Thanks.