Integrate CKEditor 3.X
This method applies to CKEditor 3.X only. (as far as I know)
in your include/staff/header.inc.php
Find this code...
<link rel="stylesheet" href="css/autosuggest_inquisitor.css" type="text/css" media="screen" charset="utf-8" />
Directly beneath it add this code...
<script type="text/javascript" src="../ckeditor/ckeditor.js"></script>
Your src will be wherever you put your ckeditor folder.
Then in include/staff/viewticket.inc.php
Find this line of code...
<textarea name="response" id="response" cols="90" rows="9" wrap="soft" style="width%" class="response"><?=$info?></textarea>
Directly below that add this code...
<script type="text/javascript">
CKEDITOR.replace( 'response' );
</script>
The replace script can be reused later on down the page with each text area. Just replace CKEDITOR.replace( 'response') with whatever your textarea name is.
Apply this method to client include files for client ckeditor inputs.
