You are here

function elf_redirect_exit in External Links Filter 7.3

Deliver a "page not found" error to the browser and performs end-of-request tasks.

1 call to elf_redirect_exit()
elf_redirect in ./elf.module
Redirect the browser to the external URL from $_GET['url'].

File

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

Code

function elf_redirect_exit() {
  drupal_not_found();
  drupal_exit();
}