Skip to content

Commit

Permalink
Fix syntax error with utf.php
Browse files Browse the repository at this point in the history
  • Loading branch information
stickz committed Aug 7, 2023
1 parent 6bfa722 commit a1ceb18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/utility/utf.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,6 @@ public static function raw_url_encode($string){
}

public static function raw_url_decode($string){
return mb_convert_encoding(rawurldecode($string), "UTF-8", "auto"));
return mb_convert_encoding(rawurldecode($string, "UTF-8", "auto"));
}
}

0 comments on commit a1ceb18

Please sign in to comment.