FIX BUG : function decodeURI

This commit is contained in:
sparkyx 2025-10-05 12:52:27 +02:00
parent c29e681098
commit ea3e5bc4fb

View file

@ -1780,7 +1780,7 @@ function encodeURIbycharacter($char)
function decodeURI($string)
{
$result = "";
for ($i = 0; $i < strlen($string); $i++)
for ($i = 0; $i < strlen($string)-8; $i++)
{
$decstr = "";
for ($p = 0; $p <= 8; $p++)