4.0.x
Dries Buytaert 2001-09-30 11:13:43 +00:00
parent a6379d2ee8
commit d7f911c910
1 changed files with 2 additions and 2 deletions

View File

@ -72,14 +72,14 @@ function message_throttle() {
} }
function drupal_goto($url) { function drupal_goto($url) {
/* /*
** It is advised to use "drupal_goto()" instead of PHP's "header()" as ** 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 ** "drupal_goto()" will append the user's session ID to the URI when PHP
** is compiled with "--enable-trans-sid". ** is compiled with "--enable-trans-sid".
*/ */
header("Location: $url". SID); header("Location: $url&". SID);
} }
function check_form($text) { function check_form($text) {