Fix argument limit check in Parse.php
This commit is contained in:
parent
c3092eb688
commit
7d1c11c051
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@
|
|||
$configs[$match['unmatched']] = true;
|
||||
}
|
||||
|
||||
if($index >= $max_arguments)
|
||||
if($index >= ($max_arguments + 1))
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue