Disable codepress. Maintained replacement needed.
git-svn-id: http://svn.automattic.com/wordpress/trunk@12005 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
67288a2db1
commit
fd3f0ac99f
|
@ -3506,11 +3506,6 @@ function screen_meta($screen) {
|
|||
$_wp_contextual_help[$screen] = $help;
|
||||
}
|
||||
break;
|
||||
case 'theme-editor':
|
||||
case 'plugin-editor':
|
||||
$settings = '<p><a id="codepress-on" href="' . $screen . '.php?codepress=on">' . __('Enable syntax highlighting') . '</a><a id="codepress-off" href="' . $screen . '.php?codepress=off">' . __('Disable syntax highlighting') . "</a></p>\n";
|
||||
$show_screen = true;
|
||||
break;
|
||||
case 'widgets':
|
||||
if ( !isset($_wp_contextual_help['widgets']) ) {
|
||||
$help = widgets_help();
|
||||
|
|
|
@ -81,9 +81,6 @@ default:
|
|||
exit;
|
||||
}
|
||||
|
||||
if ( use_codepress() )
|
||||
wp_enqueue_script( 'codepress' );
|
||||
|
||||
// List of allowable extensions
|
||||
$editable_extensions = array('php', 'txt', 'text', 'js', 'css', 'html', 'htm', 'xml', 'inc', 'include');
|
||||
$editable_extensions = (array) apply_filters('editable_extensions', $editable_extensions);
|
||||
|
|
|
@ -27,7 +27,6 @@ if (empty($theme)) {
|
|||
$theme = stripslashes($theme);
|
||||
}
|
||||
|
||||
|
||||
if ( ! isset($themes[$theme]) )
|
||||
wp_die(__('The requested theme does not exist.'));
|
||||
|
||||
|
@ -75,9 +74,6 @@ break;
|
|||
|
||||
default:
|
||||
|
||||
if ( use_codepress() )
|
||||
wp_enqueue_script( 'codepress' );
|
||||
|
||||
require_once('admin-header.php');
|
||||
|
||||
update_recently_edited($file);
|
||||
|
|
Loading…
Reference in New Issue