diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-09-30 11:13:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-09-30 11:13:43 +0000 |
commit | d7f911c91097661b7bd5ffa439fae1576532dd58 (patch) | |
tree | 3231b9ec63d5f02e6a62f8669e9f0aee7101ac1f | |
parent | a6379d2ee80392f31691d3d8cdf8558fd34f8348 (diff) | |
download | brdo-d7f911c91097661b7bd5ffa439fae1576532dd58.tar.gz brdo-d7f911c91097661b7bd5ffa439fae1576532dd58.tar.bz2 |
- typo
-rw-r--r-- | includes/common.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/common.inc b/includes/common.inc index 98a94b339..776e113b3 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -72,14 +72,14 @@ function message_throttle() { } function drupal_goto($url) { - + /* ** It is advised to use "drupal_goto()" instead of PHP's "header()" as ** "drupal_goto()" will append the user's session ID to the URI when PHP ** is compiled with "--enable-trans-sid". */ - header("Location: $url". SID); + header("Location: $url&". SID); } function check_form($text) { |