summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-05-04 18:58:32 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-05-04 18:58:32 +0000
commit921e6bc19a69a28d1ac435bb125adee51b985bd6 (patch)
tree50a6c4292a5d959cd9d3b45e5bba869a9502b427
parent69ec1a6996314221bcfdea1244d63abdfd20a201 (diff)
downloadbrdo-921e6bc19a69a28d1ac435bb125adee51b985bd6.tar.gz
brdo-921e6bc19a69a28d1ac435bb125adee51b985bd6.tar.bz2
- rolling back common.inc. Wasn't supposed to be in the last commit.
-rw-r--r--includes/common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc
index f58587556..67eaeb80a 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 htmlentities("$script.php?". implode("&", $t));
+ return "$script.php?". implode("&amp;", $t);
}
/**