Revert "Add support for application-wide notes & how-tos"

This reverts commit e546738913.
This commit is contained in:
Alexander Nicolaysen Sørnes
2009-07-21 16:02:05 +02:00
parent e7b71b52fe
commit 0339fa60c2
7 changed files with 30 additions and 139 deletions

View File

@@ -288,21 +288,4 @@ function html_note($shTitle, $shBody)
return $shRet;
}
function html_radiobuttons($aIds, $aOptions, $sName, $sDefault = '')
{
$shRet = '';
for($i = 0; $i < sizeof($aIds); $i++)
{
if($aIds[$i] == $sDefault)
$shChecked = ' checked="checked"';
else
$shChecked = '';
$shRet .= '<input type="radio" name="'.$sName.'" value="'.$aIds[$i]."\"$shChecked> " . $aOptions[$i].'<br />';
}
return $shRet;
}
?>