diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-05-30 11:01:56 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-05-30 11:01:56 +0000 |
commit | c6f9ca540d7bff04230f56320a4dda8c2ebab230 (patch) | |
tree | 6892c4cf548f36cdd1d036ca407c793d338ded74 | |
parent | d00c95711390022196faef82e3c992c736e1317a (diff) | |
download | brdo-c6f9ca540d7bff04230f56320a4dda8c2ebab230.tar.gz brdo-c6f9ca540d7bff04230f56320a4dda8c2ebab230.tar.bz2 |
- Fixed typo. Patch by Marco.
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 57f57c24d..66152b3c4 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -404,7 +404,7 @@ function drupal_goto($url) { ** Translate & to simply & */ - $url = str_replace("&", "&", $url); + $url = str_replace("&", "&", $url); /* ** It is advised to use "drupal_goto()" instead of PHP's "header()" as |