Anybody knows this error?
I have a little loop like
 	
	| if(array_key_exists("memberof", $SecurityOfficer[0])) {
 for($i = 0; $i < $SecurityOfficer[0]["memberof"]["count"]; $i++) {
 if($SecurityOfficer[0]["memberof"][$i] == $LDAPSRV[0]["USER"]["securitytag"])         $IsSecOff = TRUE;
 if($SecurityOfficer[0]["memberof"][$i] == $LDAPSRV[0]["USER"]["toktag"])              $IsTokTag = TRUE;
 if($SecurityOfficer[0]["memberof"][$i] == $LDAPSRV[0]["USER"]["ssurtag"] && $IsAdmin) $IsSsurTag = TRUE;
 }
 }
 
 if(array_key_exists("ownerof", $SecurityOfficer[0]) && $IsAdmin) {
 for($i = 0; $i < $SecurityOfficer[0]["ownerof"]["count"]; $i++) {
 if($SecurityOfficer[0]["ownerof"][$i] == $LDAPSRV[0]["USER"]["ssurtag"]) $IsLroTag = TRUE;
 }
 }
 
 | 
Adding two watches 
$SecurityOfficer[0]["memberof"][$i] and 
$SecurityOfficer[0]["ownerof"][$i] causes an error while debugging!
I get a new tab named 
[unmapped remote file] Unknown, a log entry 
Failed to find local file "Unknown" corresponding to "Unknown" remote file, a message box 
Error: E_NOTICE\nUndefined variable: SecurityOfficer and after pressing F7 for the next step a message box 
Error: E_WARNING\nUnknown(): The second argument should be either an array or an object!
Somewhere during this procedure i get this error too and the debug session  will be killed: 
Error [8] Undefined index:  
Critical failure in line 1 of file dbg_eval()
The last error seems to be a php error, all the rest occours in the PHPed IDE!
Please help me! Debugging works almost fine WITHOUT adding watches!
Bye,
Markus