Skip to content

Commit

Permalink
[+] edit "UTF8::parse_str()" -> use "mb_parse_str()"
Browse files Browse the repository at this point in the history
  • Loading branch information
Lars Moelleken committed Feb 23, 2015
1 parent 00775d2 commit 9623292
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/voku/helper/UTF8.php
Original file line number Diff line number Diff line change
Expand Up @@ -4594,9 +4594,12 @@ public static function ws()
*/
public static function parse_str($str, &$arr)
{
// init
self::checkForSupport();

$str = self::filter($str);

parse_str($str, $arr);
mb_parse_str($str, $arr);
}

/**
Expand Down

0 comments on commit 9623292

Please sign in to comment.