diff -r 000000000000 -r c78d206bf01c tinymce/3rdparty/plugins/spellchecker/rpc.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tinymce/3rdparty/plugins/spellchecker/rpc.php Thu Jun 02 06:24:03 2011 -0400 @@ -0,0 +1,111 @@ +decode($raw); + +// Execute RPC +if (isset($config['general.engine'])) { + $spellchecker = new $config['general.engine']($config); + $result = call_user_func_array(array($spellchecker, $input['method']), $input['params']); +} else + die('{"result":null,"id":null,"error":{"errstr":"You must choose an spellchecker engine in the config.php file.","errfile":"","errline":null,"errcontext":"","level":"FATAL"}}'); + +// Request and response id should always be the same +$output = array( + "id" => $input->id, + "result" => $result, + "error" => null +); + +// Return JSON encoded string +echo $json->encode($output); + +?> \ No newline at end of file