Home » Database » DB_DataObject » Bug #4000
phpversion() compare doesn't match for custom builds
Details
| Submitted | 2005-03-30 09:27 UTC |
|---|---|
| From | mfischer at php dot net |
| Assigned | alan_k |
| Status | Closed |
| Package | DB_DataObject |
| PHP Version | 4.3.10 |
| Roadmaps | (Not assigned) |
Comments
[2005-03-30 09:27 UTC] mfischer at php dot net
Description:
------------
The following code in DataObjects.php:
if ((phpversion() == '4.3.10') && !defined('DB_DATAOBJECT_NO_OVERLOAD')) {
is troublesome in packaged builds on e.g. debian, because there the version number reported is 4.3.10-9 .
I was told that the EXTRAVERSION is perfectly valid and that version_compare() would be better suited to handle such checks.