Hi, I am using the upload feature in the latest CKeditor, it displays the upload button fine and send to the correct upload file. The problem I have is that the CKEditorFuncNum is empty.
This is the code I am using in the upload script.
<script type="text/javascript">
var CKEditorFuncNum = <?php echo $_GET['CKEditorFuncNum'];?>;
window.parent.CKEDITOR.tools.callFunction( CKEditorFuncNum, '<?php echo $url;?>', '<?php $error;?>' );
</script>
Is there another function I should be passing in the actual form for the CKEditorFuncNum?
Any help would be greatly appreciated.