#1092: Harden workaround for PHP bug 47206
---------------------+------------------------------------------------------
Reporter: david | Owner: david
Type: task | Status: new
Priority: low | Milestone: 1.0.1
Component: config | Version: 1.0.0
Severity: trivial | Keywords:
Has_patch: 0 |
---------------------+------------------------------------------------------
Related to #1038 and #1089: some Linux distributions (yay!) have patched
PHP releases, resulting in the {{{version_compare()}}} check added in
[3830]:
{{{
#!php
<?php version_compare(PHP_VERSION, '5.2.8', '<='); ?>
}}}
to evaluate to false for version numbers such as {{{PHP 5.2.8-r2}}}
We should therefore change the check to
{{{
#!php
<?php version_compare(PHP_VERSION, '5.2.9', '<'); ?>
}}}
--
Ticket URL: <http://trac.agavi.org/ticket/1092>
Agavi <http://www.agavi.org/>
An MVC Framework for PHP5
_______________________________________________
Agavi Tickets Mailing List
[email protected]
http://lists.agavi.org/mailman/listinfo/tickets