diff --git a/handlers/views_handler_field.inc b/handlers/views_handler_field.inc index 65210d9..500e37d 100644 --- a/handlers/views_handler_field.inc +++ b/handlers/views_handler_field.inc @@ -1340,9 +1340,9 @@ If you would like to have the characters \'[\' and \']\' please use the html ent if (isset($alter['query'])) { // Convert the query to a string, perform token replacement, and then // convert back to an array form for l(). - $options['query'] = drupal_http_build_query($alter['query']); + $options['query'] = http_build_query($alter['query']); $options['query'] = strtr($options['query'], $tokens); - $options['query'] = drupal_get_query_array($options['query']); + parse_str($options['query'], $options['query']); } if (isset($alter['alias'])) { // Alias is a boolean field, so no token.