diff --git a/admin/communication.php b/admin/communication.php index a179b552..39f2ca24 100644 --- a/admin/communication.php +++ b/admin/communication.php @@ -74,15 +74,15 @@ case 'dialog_choose': exit; @@ -136,63 +135,82 @@ case 'email_save': $subject = mysql_real_escape_string($_POST['subject']); $bodyhtml = mysql_real_escape_string($_POST['bodyhtml']); $type = mysql_real_escape_string($_POST['type']); + $key = mysql_real_escape_string($_POST['key']); + $fcid = mysql_real_escape_string($_POST['fcid']); if($id == 0) { - mysql_query("INSERT INTO emails(type) VALUES('$type')"); + mysql_query("INSERT INTO emails(type,val) VALUES('$type','$key')"); echo mysql_error(); $id = mysql_insert_id(); } + + /* Allow the fundraising campaigns id to be NULL, it'll never be 0 */ + $fcstr = ($fcid == 0) ? 'NULL' : "'$fcid'"; mysql_query("UPDATE emails SET name='$name',description='$description', - `from`='$from',subject='$subject',bodyhtml='$bodyhtml' + `from`='$from',subject='$subject',bodyhtml='$bodyhtml', + fundraising_campaigns_id=$fcstr WHERE id='$id'"); echo mysql_error(); happy_("Email Saved"); exit; case 'dialog_edit': - $clone_id = 0; + if(array_key_exists('id', $_GET)) { $id = intval($_GET['id']); - $q = mysql_query("SELECT * FROM emails WHERE id='$id'"); - } else if(array_key_exists('key', $_GET)) { - $key = mysql_real_escape_string($_GET['key']); - $q = mysql_query("SELECT * FROM emails WHERE val='$key'"); - } else if(array_key_exists('clone_id', $_GET)) { - $clone_id = intval($_GET['clone_id']); - $q = mysql_query("SELECT * FROM emails WHERE id='$clone_id'"); + $cloneid = 0; + } else if(array_key_exists('cloneid', $_GET)) { + $id = intval($_GET['cloneid']); + $clone_id = $id; } else { - /* New email */ - $q = NULL; + /* new email, set defaults which may be specified */ + $id = 0; + $key = htmlspecialchars($_GET['key']); + if(array_key_exists('fundraising_campaigns_id', $_GET)) { + $fcid = intval( $_GET['fundraising_campaigns_id']); + $type = 'fundraising'; + } else { + $fcid = 0; + $type = (array_key_exists('type',$_GET)) ? $_GET['type'] : 'user'; + } } - if($q != NULL) { + if($id) { + $q = mysql_query("SELECT * FROM emails WHERE id='$id'"); if(mysql_num_rows($q) != 1) { echo "Ambiguous edit"; exit; } $e = mysql_fetch_assoc($q); + + /* If we're supposed to clone it, load it then zero out the + * id so we make a new record on save, and override the key */ + if($clone_id) { + $e['id'] = 0; + $e['val'] = $_GET['key']; + $e['fundraising_campaigns_id'] = $_GET['fundraising_campaigns_id']; + } $emails_id = $e['id']; $name = htmlspecialchars($e['name']); + $key = htmlspecialchars($e['val']); $description = htmlspecialchars($e['description']); $from = htmlspecialchars($e['from']); $subject = htmlspecialchars($e['subject']); $body = $e['body']; $bodyhtml = $e['bodyhtml']; + $fcid = intval($e['fundraising_campaigns_id']); if($bodyhtml == '') $bodyhtml = $body; - - /* If we're supposed to clone it, load it then zero out the - * id so we make a new record on save */ - if($clone_id) $emails_id = 0; } - /* Load a type if specified, if not, default to use */ - $type = (array_key_exists('type',$_GET)) ? $_GET['type'] : 'user'; ?>