I'm using EL6 with all updates applied and getting bit by a PHP5 bug that was fixed a year and a half ago...
https://bugs.php.net/bug.php?id=52534
EL6 ships with php 5.3.3, which was released prior to the bug fix. What are the chances that this fixed bug can be reported/fixed upstream at the prominent North American Linux Vendor? Here's sample code that demonstrates the problem:
function CheckBug52534(){ $check = array(1 => 'a', -1 => 'b'); $str = var_export($check, true); $str = "$a=$str;"; eval($str); if (!isset($a[-1])) return true; }
echo (Checkbug52534()) ? "has it" : 'not found';
On 4.1.2012 19:09, Lists wrote:
I'm using EL6 with all updates applied and getting bit by a PHP5 bug that was fixed a year and a half ago...
https://bugs.php.net/bug.php?id=52534
EL6 ships with php 5.3.3, which was released prior to the bug fix. What are the chances that this fixed bug can be reported/fixed upstream at the prominent North American Linux Vendor?
I found the following existing bugzillas. https://bugzilla.redhat.com/show_bug.cgi?id=695251 https://bugzilla.redhat.com/show_bug.cgi?id=700724
However, both seems for 5 only. If you think this applies to 6 too, consider filing a bug request yourself.
I found the following existing bugzillas.
https://bugzilla.redhat.com/show_bug.cgi?id=695251 https://bugzilla.redhat.com
/show_bug.cgi?id=700724 However, both seems for 5 only. If you think
this applies to 6 too, consider filing a bug request yourself.
Thanks, I did. https://bugzilla.redhat.com/show_bug.cgi?id=771738