- fixing drupal_url()
parent
3a0f4b7219
commit
c3a36313ac
|
@ -639,7 +639,7 @@ function form_submit($value) {
|
||||||
function drupal_url($args = array(), $script = "node") {
|
function drupal_url($args = array(), $script = "node") {
|
||||||
$t = array();
|
$t = array();
|
||||||
foreach ($args as $key => $value) {
|
foreach ($args as $key => $value) {
|
||||||
$t[] = "$key = $value";
|
$t[] = "$key=$value";
|
||||||
}
|
}
|
||||||
return "$script.php?". implode("&", $t);
|
return "$script.php?". implode("&", $t);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue