- fixing drupal_url()

4.0.x
Kjartan Mannes 2002-05-02 18:56:11 +00:00
parent 3a0f4b7219
commit c3a36313ac
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}