Minor code cleanup

This commit is contained in:
Scott Walkinshaw
2011-07-11 15:24:00 -06:00
parent e161da8b4d
commit 16583d1d27
3 changed files with 9 additions and 9 deletions

View File

@@ -119,7 +119,7 @@ function roots_1140_header_before() {
global $roots_options;
$roots_css_framework = $roots_options['css_framework'];
if ($roots_css_framework === '1140') {
echo "<div class=\"row\">\n";
echo '<div class="row">', "\n";
}
}
@@ -128,7 +128,7 @@ function roots_1140_header_after() {
$roots_css_framework = $roots_options['css_framework'];
if ($roots_css_framework === '1140') {
echo "</div><!-- /.row -->\n";
echo "<div class=\"row\">\n";
echo '<div class="row">', "\n";
}
}
@@ -137,7 +137,7 @@ function roots_1140_footer_before() {
$roots_css_framework = $roots_options['css_framework'];
if ($roots_css_framework === '1140') {
echo "</div><!-- /.row -->\n";
echo "<div class=\"row\">\n";
echo '<div class="row">', "\n";
}
}