View Issue Details

IDProjectCategoryView StatusLast Update
0011098mantisbtadministrationpublic2010-02-22 14:35
Reporteropi Assigned Tovboctor  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version1.2.0rc2 
Fixed in Version1.2.0 
Summary0011098: Zend check is not correct IMHO
Description

In my installation on the 'Check your installation' Page
(.../admin/check.php) i get a message saying:
"
Checking Zend Optimiser version (if installed)...
Fail - Installed Version: 3.3.3. Zend Optimizer should be version be 3.3.3 or greater! Some old versions cause the view issues page not to display completely. The latest version of Zend Optimizer can be found at www.zend.com
"
which is IMHO nonsene because i have 3.3.3 and the script complain
that i need 3.3.3. :-(

TagsNo tags attached.

Activities

vboctor

vboctor

2009-10-30 00:22

manager   ~0023480

Last edited: 2009-10-30 00:22

I haven't looked in details, but here is a guess for a fix:

In admin/check.php:

Replace L187:
if (!($t_version > ZEND_OPTIMIZER_VERSION) || ($t_version==ZEND_OPTIMIZER_VERSION && $t_subVersion>=ZEND_OPTIMIZER_SUBVERSION)) {

With:
if ( ( $t_version < ZEND_OPTIMIZER_VERSION ) || ( $t_version == ZEND_OPTIMIZER_VERSION && $t_subVersion < ZEND_OPTIMIZER_SUBVERSION ) ) {

opi

opi

2009-10-30 01:27

reporter   ~0023482

Last edited: 2009-10-30 01:28

Thanks for your reply.
That does work here but the patch should be really
included into the current mantis tree...

opi

opi

2009-11-11 13:49

reporter   ~0023659

Is here a chance to get this patch into a new release candidate
because the issue block the upgrade process and i don't want to
upgrade with all test done without a fail.