forked from science-ation/science-ation
Make safety questions require a question to be filled in (or at least something in the question box)
This commit is contained in:
parent
b9bf8fba6c
commit
ab294df97b
@ -28,6 +28,8 @@
|
|||||||
echo "<a href=\"index.php\"><< ".i18n("Back to Configuration")."</a><br />";
|
echo "<a href=\"index.php\"><< ".i18n("Back to Configuration")."</a><br />";
|
||||||
|
|
||||||
if($_POST['action']=="save" && $_POST['save'])
|
if($_POST['action']=="save" && $_POST['save'])
|
||||||
|
{
|
||||||
|
if($_POST['question'])
|
||||||
{
|
{
|
||||||
mysql_query("UPDATE safetyquestions SET
|
mysql_query("UPDATE safetyquestions SET
|
||||||
question='".mysql_escape_string(stripslashes($_POST['question']))."',
|
question='".mysql_escape_string(stripslashes($_POST['question']))."',
|
||||||
@ -38,9 +40,14 @@
|
|||||||
echo mysql_error();
|
echo mysql_error();
|
||||||
|
|
||||||
echo happy(i18n("Safety question successfully saved"));
|
echo happy(i18n("Safety question successfully saved"));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
echo error(i18n("Question is required"));
|
||||||
|
}
|
||||||
|
|
||||||
if($_POST['action']=="new")
|
if($_POST['action']=="new")
|
||||||
|
{
|
||||||
|
if($_POST['question'])
|
||||||
{
|
{
|
||||||
mysql_query("INSERT INTO safetyquestions (question,type,required,ord,year) VALUES (
|
mysql_query("INSERT INTO safetyquestions (question,type,required,ord,year) VALUES (
|
||||||
'".mysql_escape_string(stripslashes($_POST['question']))."',
|
'".mysql_escape_string(stripslashes($_POST['question']))."',
|
||||||
@ -52,8 +59,9 @@
|
|||||||
echo mysql_error();
|
echo mysql_error();
|
||||||
|
|
||||||
echo happy(i18n("Safety question successfully added"));
|
echo happy(i18n("Safety question successfully added"));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
echo error(i18n("Question is required"));
|
||||||
}
|
}
|
||||||
|
|
||||||
if($_GET['action']=="remove" && $_GET['remove'])
|
if($_GET['action']=="remove" && $_GET['remove'])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user