echo $lang["BugCreate"] ." / ". $lang["BugModify"] ?>
What do you see here
You will see a form to enter or change a bug description
- echo $lang["BugState"] ?>
The current state of the bug solving process
This is initally OPEN. Other states are:
@reset($lang['BugStates']);
while ( list ($i,$f) = @each ($lang['BugStates']) ) {
echo "- ". $f;
}
?>
- echo $lang["BugClass"] ?>
The class of the bug describes how important it is to solve the problem
TUTOS knows about these different classes:
@reset($lang['BugClasses']);
while ( list ($i,$f) = @each ($lang['BugClasses']) ) {
echo "- ". $f;
}
?>
- echo $lang["BugShort"] ?>
A short text which describes what goes wrong
- echo $lang["BugAssignedTo"] ?>
the name of the person/team to solve the bug
- echo $lang["ProductP"] ?>
the name of the buggy project / installation
What you can do here
- Enter
Insert the new/changed bug into the database