diff --git a/include/class.filter.php b/include/class.filter.php index a749e5eaeabc6c08d0a44d29fa30782511313bac..4f000901f74d6d7c61730f3065b63760266dbb31 100644 --- a/include/class.filter.php +++ b/include/class.filter.php @@ -401,7 +401,7 @@ class Filter { ',reject_email='.db_input(isset($vars['reject_email'])?1:0). ',use_replyto_email='.db_input(isset($vars['use_replyto_email'])?1:0). ',disable_autoresponder='.db_input(isset($vars['disable_autoresponder'])?1:0). - ',canned_response_id='.db_input($vars['canned_response']). + ',canned_response_id='.db_input($vars['canned_response_id']). ',notes='.db_input($vars['notes']); diff --git a/include/staff/filter.inc.php b/include/staff/filter.inc.php index b23dd520bc8338ba4188162395f3045df6aaef3f..f57a09a42310d01b3297b38638453437084ca5de 100644 --- a/include/staff/filter.inc.php +++ b/include/staff/filter.inc.php @@ -186,14 +186,15 @@ $info=Format::htmlchars(($errors && $_POST)?$_POST:$info); Canned Response: </td> <td> - <select name="canned_response"> + <select name="canned_response_id"> <option value="">— None —</option> <?php - $sql='SELECT canned_id,title FROM '.CANNED_TABLE.' ORDER by title'; + $sql='SELECT canned_id,title FROM '.CANNED_TABLE + .' WHERE isenabled ORDER by title'; if ($res=db_query($sql)) { while (list($id,$title)=db_fetch_row($res)) { - $selected=($info['canned_response'] && - $id==$info['canned_response']) + $selected=($info['canned_response_id'] && + $id==$info['canned_response_id']) ? 'selected="selected"' : ''; echo sprintf('<option value="%d" %s>%s</option>', $id, $selected, $title); @@ -201,7 +202,7 @@ $info=Format::htmlchars(($errors && $_POST)?$_POST:$info); } ?> </select> - <em>(Automatically respond with this canned attachment)</em> + <em>(Automatically respond with this canned response)</em> </td> </tr> <tr>