You are here

function elf_redirect in External Links Filter 6.3

Same name and namespace in other branches
  1. 7.3 elf.module \elf_redirect()

Redirect the browser to the external URL from $_GET['url'].

3 string references to 'elf_redirect'
elf_form_settings in ./elf.module
Admin settings form.
elf_menu in ./elf.module
Implementation of hook_menu().
elf_replace in ./elf.module
Add classes to external or mailto links in a text.

File

./elf.module, line 202
Adds an icon to external and mailto links.

Code

function elf_redirect() {
  drupal_goto($_GET['url']);
}