diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-04 18:56:43 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-04 18:56:43 +0000 |
commit | 69ec1a6996314221bcfdea1244d63abdfd20a201 (patch) | |
tree | f0b96e2aa9b1ba76678ed9f3dd041f4d88b6970f /includes | |
parent | d09d6d2d97785a13b07c30310b1679ecd42fdee9 (diff) | |
download | brdo-69ec1a6996314221bcfdea1244d63abdfd20a201.tar.gz brdo-69ec1a6996314221bcfdea1244d63abdfd20a201.tar.bz2 |
- making sure the nodes call filter().
Diffstat (limited to 'includes')
-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 67eaeb80a..f58587556 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -641,7 +641,7 @@ function drupal_url($args = array(), $script = "node") { foreach ($args as $key => $value) { $t[] = "$key=". urlencode($value); } - return "$script.php?". implode("&", $t); + return htmlentities("$script.php?". implode("&", $t)); } /** |