summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-05-02 18:56:11 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-05-02 18:56:11 +0000
commitc3a36313aca1468b0e224f47d7f22d0025a8c798 (patch)
tree63c986f185300d5188841dadb2483992276ae0ed /includes
parent3a0f4b721918525839e5e767a887dc5053b807ab (diff)
downloadbrdo-c3a36313aca1468b0e224f47d7f22d0025a8c798.tar.gz
brdo-c3a36313aca1468b0e224f47d7f22d0025a8c798.tar.bz2
- fixing drupal_url()
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 30b022bc1..e0d8b55db 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -639,7 +639,7 @@ function form_submit($value) {
function drupal_url($args = array(), $script = "node") {
$t = array();
foreach ($args as $key => $value) {
- $t[] = "$key = $value";
+ $t[] = "$key=$value";
}
return "$script.php?". implode("&amp;", $t);
}