Skip to content

Commit

Permalink
Fixing trimmming of whitespace inside code tags, spotted by Gil
Browse files Browse the repository at this point in the history
  • Loading branch information
reines committed Aug 12, 2010
1 parent 3c3ea44 commit 79a5fd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/functions.php
Expand Up @@ -1101,9 +1101,9 @@ function pun_linebreaks($str)
//
// A wrapper for utf8_trim for compatibility
//
function pun_trim($str)
function pun_trim($str, $charlist = false)
{
return utf8_trim($str);
return utf8_trim($str, $charlist);
}

//
Expand Down

0 comments on commit 79a5fd3

Please sign in to comment.