/**
 * void redirect_query(array $new_query,bool $merge_current=true)
 * redirects to the new query string, die()s in the process
 * @param array $new_query
 * @param boolean $merge_current true to include current $_GET with $new_query
 * @todo support string on $new_query
 * @uses redirect()
 *
 * @deprecated see add::redirect_query()
 */
function redirect_query($new_query, $merge_current = true)
{
    trigger_error("Deprecated redirect_query function", E_USER_DEPRECATED);
    add::redirect_query($new_query, $merge_current);
}