diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-02 18:56:11 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-02 18:56:11 +0000 |
commit | c3a36313aca1468b0e224f47d7f22d0025a8c798 (patch) | |
tree | 63c986f185300d5188841dadb2483992276ae0ed /includes/common.inc | |
parent | 3a0f4b721918525839e5e767a887dc5053b807ab (diff) | |
download | brdo-c3a36313aca1468b0e224f47d7f22d0025a8c798.tar.gz brdo-c3a36313aca1468b0e224f47d7f22d0025a8c798.tar.bz2 |
- fixing drupal_url()
Diffstat (limited to 'includes/common.inc')
-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 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("&", $t); } |