You are here

function path_redirect_get_query in Path redirect 6

1 call to path_redirect_get_query()
path_redirect_goto in ./path_redirect.module

File

./path_redirect.module, line 574

Code

function path_redirect_get_query($query = NULL) {
  if (!isset($query)) {
    $query = $_GET;
  }
  unset($query['q']);
  return $query;
}