﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
477,DEFINE is not parset correctly,emudojo,ed_mann,"{{{
When you have some code like this

define('MAX_CONNECTION_STATUS_IGNORE',      1);
    define('MAX_CONNECTION_STATUS_PENDING',     2);
    define('MAX_CONNECTION_STATUS_ONHOLD',      3);
    define('MAX_CONNECTION_STATUS_APPROVED',    4);
    define('MAX_CONNECTION_STATUS_DISAPPROVED', 5);
    define('MAX_CONNECTION_STATUS_DUPLICATE',   6);

  
    $GLOBALS['_MAX']['STATUSES'] = array(
        MAX_CONNECTION_STATUS_IGNORE      =>
'strStatusIgnore',       // start value
        MAX_CONNECTION_STATUS_PENDING     =>
'strStatusPending',      // start value
        MAX_CONNECTION_STATUS_ONHOLD      =>
'strStatusOnHold',
        MAX_CONNECTION_STATUS_APPROVED    =>
'strStatusApproved',     // start value
        MAX_CONNECTION_STATUS_DISAPPROVED =>
'strStatusDisapproved',
        MAX_CONNECTION_STATUS_DUPLICATE   =>
'strStatusDuplicate',
    );

PHPeclipse underline the keys of the
$GLOBALS['_MAX']['STATUSES'] array, because for
Phpeclipse those GLOBAL variables haven't been
initialized. I have in my include path the folder
containing this file.
}}}",Bugs,closed,5,,PHP Parser,None,None,,
