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

Recover lost subclasses on containers.

parent 391d13c4
No related branches found
No related tags found
No related merge requests found
......@@ -730,9 +730,9 @@ function theme_feeds_ui_edit_page($variables) {
function theme_feeds_ui_container($variables) {
$container = $variables['container'];
$class = empty($container['class']) ? array('plain') : $container['class'];
$class = array_merge(array('feeds-container'), empty($container['class']) ? array('plain') : $container['class']);
$id = empty($container['id']) ? '': ' id="'. $container['id'] .'"';
$output = '<div class="feeds-container'. implode(' ', $class) .'"'. $id .'>';
$output = '<div class="'. 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