Finished work for reuseable form data, fixes #672 @4h

This commit is contained in:
Andreas Burchert (scarya)
2011-03-19 14:32:43 +01:00
parent 38999a4f5e
commit 3fc3174788
2 changed files with 7 additions and 0 deletions

View File

@@ -38,6 +38,10 @@ function makecheckbox($name, $title, $value, $break = false, $selvalue = NULL, $
{
$checked = 'checked="checked"';
}
else if(isset($_SESSION['requestData'][$name]))
{
$checked = 'checked="checked"';
}
else
{
$checked = '';