Add a fixme to deleting events from the schedule to make sure we dont forget :)

This commit is contained in:
james 2010-06-11 20:08:27 +00:00
parent badea469f6
commit a928b97396

View File

@ -137,6 +137,8 @@
exit;
}
else if($_GET['action']=="deleteevent") {
//FIXME: dont let it delete an event that is already in use!
//FIXME: and if we do, delete everything that its been linked to!
$id=intval($_POST['id']);
mysql_query("DELETE FROM schedule WHERE conferences_id='{$conference['id']}' AND id='{$id}'");
exit;