forked from science-ation/science-ation
- Always scrub data before passing it to mysql
This commit is contained in:
parent
0a9053181c
commit
abd1fda6fe
@ -99,8 +99,9 @@
|
||||
mysql_query("DELETE FROM award_awards_projectcategories WHERE award_awards_id='$id'");
|
||||
|
||||
foreach($_POST['categories'] AS $key=>$cat) {
|
||||
$c = intval($cat);
|
||||
mysql_query("INSERT INTO award_awards_projectcategories (award_awards_id,projectcategories_id,year)
|
||||
VALUES ('$id','$cat','{$config['FAIRYEAR']}')");
|
||||
VALUES ('$id','$c','{$config['FAIRYEAR']}')");
|
||||
}
|
||||
|
||||
//wipe out any old award-divisions links
|
||||
@ -108,8 +109,9 @@
|
||||
|
||||
//now add the new ones
|
||||
foreach($_POST['divisions'] AS $key=>$div) {
|
||||
$d = intval($div);
|
||||
mysql_query("INSERT INTO award_awards_projectdivisions (award_awards_id,projectdivisions_id,year)
|
||||
VALUES ('$id','$div','{$config['FAIRYEAR']}')");
|
||||
VALUES ('$id','$d','{$config['FAIRYEAR']}')");
|
||||
}
|
||||
happy_("Saved.");
|
||||
exit;
|
||||
|
Loading…
Reference in New Issue
Block a user