From: Tobias Schultze Date: Fri, 22 Feb 2013 13:58:36 +0000 (+0100) Subject: removed parameter from url_encode filter X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=49ba6b47597994e2f335916851218a96997c2c3b;p=konrad%2Ftwig.git removed parameter from url_encode filter the filter now only uses the more appropriate rawurlencode() which is also more consistent with the escape('url') filter --- diff --git a/lib/Twig/Extension/Core.php b/lib/Twig/Extension/Core.php index 8b2c6fc..50005b1 100644 --- a/lib/Twig/Extension/Core.php +++ b/lib/Twig/Extension/Core.php @@ -590,21 +590,16 @@ function twig_number_format_filter(Twig_Environment $env, $number, $decimal = nu * URL encodes a string as a path segment or an array as a query string. * * @param string|array $url A URL or an array of query parameters - * @param bool $raw true to use rawurlencode() instead of urlencode * * @return string The URL encoded value */ -function twig_urlencode_filter($url, $raw = false) +function twig_urlencode_filter($url) { if (is_array($url)) { return http_build_query($url, '', '&'); } - if ($raw) { - return rawurlencode($url); - } - - return urlencode($url); + return rawurlencode($url); } if (version_compare(PHP_VERSION, '5.3.0', '<')) {