More Bluegrid fine tuning and generic-content-wrapper-styled added to some tpl-files and 2 php files, cause they dont have a tpl file.

This commit is contained in:
jeroenpraat
2015-11-01 22:59:32 +01:00
parent bd75d32c1b
commit 618155e6ab
8 changed files with 53 additions and 10 deletions

View File

@@ -557,7 +557,7 @@ function admin_page_dbsync(&$a) {
}
}
if(! count($failed))
return '<h3>' . t('No failed updates.') . '</h3>';
return '<div class="generic-content-wrapper-styled"><h3>' . t('No failed updates.') . '</h3></div>';
$o = replace_macros(get_markup_template('failed_updates.tpl'),array(
'$base' => $a->get_baseurl(true),

View File

@@ -13,6 +13,8 @@ function pubsites_content(&$a) {
}
$url .= '/sites';
$o .= '<div class="generic-content-wrapper-styled">';
$o .= '<h1>' . t('Public Sites') . '</h1>';
$o .= '<div class="descriptive-text">' .
@@ -33,6 +35,9 @@ function pubsites_content(&$a) {
}
$o .= '</table>';
$o .= '</div>';
}
}
return $o;