Closed (fixed)
Project:
Drupal core
Version:
7.x-dev
Component:
system.module
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
26 Aug 2010 at 21:31 UTC
Updated:
17 Oct 2010 at 00:50 UTC
Jump to comment: Most recent file
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.