Make safety questions require a question to be filled in (or at least something in the question box)

This commit is contained in:
james 2006-02-01 16:59:45 +00:00
parent b9bf8fba6c
commit ab294df97b

View File

@ -28,6 +28,8 @@
echo "<a href=\"index.php\">&lt;&lt; ".i18n("Back to Configuration")."</a><br />";
if($_POST['action']=="save" && $_POST['save'])
{
if($_POST['question'])
{
mysql_query("UPDATE safetyquestions SET
question='".mysql_escape_string(stripslashes($_POST['question']))."',
@ -38,9 +40,14 @@
echo mysql_error();
echo happy(i18n("Safety question successfully saved"));
}
else
echo error(i18n("Question is required"));
}
if($_POST['action']=="new")
{
if($_POST['question'])
{
mysql_query("INSERT INTO safetyquestions (question,type,required,ord,year) VALUES (
'".mysql_escape_string(stripslashes($_POST['question']))."',
@ -52,8 +59,9 @@
echo mysql_error();
echo happy(i18n("Safety question successfully added"));
}
else
echo error(i18n("Question is required"));
}
if($_GET['action']=="remove" && $_GET['remove'])