summaryrefslogtreecommitdiff
path: root/includes/common.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/common.inc')
-rw-r--r--includes/common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 48c5a3498..8a85e0d71 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1648,7 +1648,7 @@ function drupal_attributes($attributes = array()) {
foreach ($attributes as $key => $value) {
$t[] = $key .'="'. check_plain($value) .'"';
}
- return ' '. implode($t, ' ');
+ return ' '. implode(' ', $t);
}
}