I know this has been talked about but i cant seem to get this to work.
I changed Column source in my database to read as this.
ENUM('Email','Verbal','Phone','Office Comminicator','Text','Other','Web')
I changed include/staff/newticket.inc.php to this lines 46 - 53
<select name="source">
<option value="" selected >Select Source</option>
<option value="Email" <?=($info=='Email')?'selected':''?>>Email</option>
<option value="Verbal" <?=($info=='Verbal')?'selected':''?>>Verbal</option>
<option value="Phone" <?=($info=='Phone')?'selected':''?>>Phone</option>
<option value="Office Communicator" <?=($info=='Office Communicator')?'selected':''?>>Office Communicator</option>
<option value="Text" <?=($info=='Text')?'selected':''?>>Text</option>
<option value="Other" <?=($info=='Other')?'selected':''?>>Other</option>
I seen other posts saying you must change the scp/tickets.php and add the following info.
if($_POST && !in_array($_POST,array('email','Verbal','Phone','Office Communicator', 'Text','other')))
$errors='Invalid source';
I cant figure out what else to do anyone with any ideas?