Fix argument limit check in Parse.php

This commit is contained in:
netkas 2024-09-24 00:42:56 -04:00
parent c3092eb688
commit 7d1c11c051

View file

@ -96,7 +96,7 @@
$configs[$match['unmatched']] = true; $configs[$match['unmatched']] = true;
} }
if($index >= $max_arguments) if($index >= ($max_arguments + 1))
{ {
break; break;
} }