version: Properly handle missing test results

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-11-04 23:09:12 +01:00
committed by Chris Morgan
parent 2aad57fbec
commit 5c6b3bb45e
3 changed files with 54 additions and 11 deletions

View File

@@ -286,4 +286,18 @@ function make_inx_option_list($varname, $inx = null)
}
/* Displays a note box */
function html_note($shTitle, $shBody)
{
$shRet = '<div class="note_container">';
$shRet .= '<div class="note_title">';
$shRet .= $shTitle;
$shRet .= '</div>';
$shRet .= '<div class="note_body">';
$shRet .= $shBody;
$shRet .= '</div></div>';
return $shRet;
}
?>