From c3a36313aca1468b0e224f47d7f22d0025a8c798 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Thu, 2 May 2002 18:56:11 +0000 Subject: [PATCH] - fixing drupal_url() --- includes/common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/common.inc b/includes/common.inc index 30b022bc14e..e0d8b55db02 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); }