Skip to content
Snippets Groups Projects
Commit 366a4ebd authored by Alex Barth's avatar Alex Barth
Browse files

It's implode() :P

parent 33bfbf79
No related branches found
No related tags found
No related merge requests found
......@@ -732,7 +732,7 @@ function theme_feeds_ui_container($variables) {
$class = empty($container['class']) ? array('plain') : $container['class'];
$id = empty($container['id']) ? '': ' id="'. $container['id'] .'"';
$output = '<div class="feeds-container'. explode(' ', $class) .'"'. $id .'>';
$output = '<div class="feeds-container'. implode(' ', $class) .'"'. $id .'>';
if (isset($container['actions']) && count($container['actions'])) {
$output .= '<ul class="container-actions">';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment