Make WordPress Core


Ignore:
Timestamp:
12/28/2013 11:52:04 PM (12 years ago)
Author:
azaozz
Message:

TinyMCE 4.0.12, first run.

  • Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
  • Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
  • Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
  • Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
  • Updates DFW, wp-admin/js/wp-fullscreen.js.

See #24067.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/js/tinymce/plugins/spellchecker/rpc.php

    r16405 r26876  
    9797    $spellchecker = new $config['general.engine']($config);
    9898    $result = call_user_func_array(array($spellchecker, $input['method']), $input['params']);
    99 } else
    100     die('{"result":null,"id":null,"error":{"errstr":"You must choose an spellchecker engine in the config.php file.","errfile":"","errline":null,"errcontext":"","level":"FATAL"}}');
    101 
     99} else {
     100//  die('{"result":null,"id":null,"error":{"errstr":"You must choose an spellchecker engine in the config.php file.","errfile":"","errline":null,"errcontext":"","level":"FATAL"}}');
     101    die('{"error":"You must choose spellchecker engine in the config.php file."}');
     102}
    102103// Request and response id should always be the same
    103104$output = array(
Note: See TracChangeset for help on using the changeset viewer.