summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-05-04 18:56:43 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-05-04 18:56:43 +0000
commit69ec1a6996314221bcfdea1244d63abdfd20a201 (patch)
treef0b96e2aa9b1ba76678ed9f3dd041f4d88b6970f /includes
parentd09d6d2d97785a13b07c30310b1679ecd42fdee9 (diff)
downloadbrdo-69ec1a6996314221bcfdea1244d63abdfd20a201.tar.gz
brdo-69ec1a6996314221bcfdea1244d63abdfd20a201.tar.bz2
- making sure the nodes call filter().
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc2
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("&amp;", $t);
+ return htmlentities("$script.php?". implode("&", $t));
}
/**