
Thats my problem.
This is the chat
This is the code:
- Code: Select all
$nospaces = preg_split($pattern_quote,$params_str,-1,PREG_SPLIT_OFFSET_CAPTURE|PREG_SPLIT_NO_EMPTY);
foreach($nospaces as $p)
{
// parse the splited blocks with unquotted parameter pattern (ex: '/invite nicknamewithoutspace')
preg_match_all($pattern_noquote,$p[0],$res2,PREG_OFFSET_CAPTURE);
foreach( $res2[1] as $p2 )
{
$p2[1] += $p[1];
//$p2[1] = $p2[1] + $p[1];
$params_res[] = $p2;
}
}
Line 284 is:
- Code: Select all
$p2[1] += $p[1];
PHP version 4.2.2
Thankyou for any help!