Skip to content
Snippets Groups Projects
Commit b394251c authored by Alberto Siles's avatar Alberto Siles
Browse files

@hatuhay: Fix error on content span.

parent 07aa380e
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ function _bootstrap_barrio_content_width() {
$sidebar_first_width = (_bootstrap_barrio_block_list('sidebar_first')) ? theme_get_setting('sidebar_first_width') : 0;
$sidebar_second_width = (_bootstrap_barrio_block_list('sidebar_second')) ? theme_get_setting('sidebar_second_width') : 0;
$content_width = 12 - $sidebar_first_width - $sidebar_second_width;
$content_width = ($content_width == 12) ? "container" : "span_" . $content_width;
$content_width = ($content_width == 12) ? "container" : "span" . $content_width;
return $content_width;
}
......
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