diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-09 17:25:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-09 17:25:11 +0000 |
commit | 00ee7f747b0920f2b8375b494930b19a25030a57 (patch) | |
tree | dde77eca64fdad09f9faf9fb10e2a39f4631f3f0 /includes/common.inc | |
parent | c79eb8c9901b6b1439822d13da073eb84b07a7c0 (diff) | |
download | brdo-00ee7f747b0920f2b8375b494930b19a25030a57.tar.gz brdo-00ee7f747b0920f2b8375b494930b19a25030a57.tar.bz2 |
- Removed the "return" link from the node submission confirmation page.
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/includes/common.inc b/includes/common.inc index a0aa2d13a..9df7cc320 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -504,29 +504,6 @@ function drupal_goto($url) { exit(); } -/* -** Stores the referer in a persistent variable: -*/ - -function referer_save() { - if (!strstr(referer_uri(), request_uri())) { - $_SESSION["referer"] = referer_uri(); - } -} - -/* -** Restores the referer from a persistent variable: -*/ - -function referer_load() { - if (isset($_SESSION["referer"])) { - return $_SESSION["referer"]; - } - else { - return 0; - } -} - function valid_input_data($data) { if (is_array($data) || is_object($data)) { |