web: add option for project-defined text in server status page

This commit is contained in:
David Anderson 2015-03-16 21:48:49 -07:00
parent 51b3e05fd1
commit 3031d56363
1 changed files with 3 additions and 0 deletions

View File

@ -130,6 +130,9 @@ function show_status_html($x) {
if ($daemons->missing_remote_status) { if ($daemons->missing_remote_status) {
echo "<br>Status of remote daemons is missing\n"; echo "<br>Status of remote daemons is missing\n";
} }
if (function_exists('server_status_project_info')) {
server_status_project_info();
}
echo "</td><td>\n"; echo "</td><td>\n";
echo "<h2>".tra("Computing status")."</h2>\n"; echo "<h2>".tra("Computing status")."</h2>\n";
start_table(); start_table();