Bug tracker

This ticket has been moved to our new tracker. Open Ticket PHPBB3-2170 now.

bugs in includes/utf/utf_tools.php (fix completed in vcs)

At about line 129,it is:
return mb_strrpos($str, $search);
and it should be:
return mb_strrpos($str, $needle, $offset);


in function utf8_strpos
if ($offset === false)
should be:
if (is_null($offset))

in function utf8_substr
if ($length === false)
should be:
if (is_null($length))

the are on line 141、177、211

Comments / History

Linked ticket with changeset: r6593

Action performed by DavidMJ (Former Team Member) on Nov 16th 2006, 20:16

Ticket details

Related SVN changesets