Script loader fixes from mdawaffe. fixes #2765
git-svn-id: https://develop.svn.wordpress.org/trunk@3830 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
61e7840ff2
commit
077fd0a135
@ -26,7 +26,8 @@ if ( isset( $_POST['deletecomment'] ) )
|
||||
switch($action) {
|
||||
case 'editcomment':
|
||||
$title = __('Edit Comment');
|
||||
$editing = true;
|
||||
if ( user_can_richedit() )
|
||||
wp_enqueue_script( 'wp_tiny_mce' );
|
||||
require_once ('admin-header.php');
|
||||
|
||||
$comment = (int) $_GET['comment'];
|
||||
|
@ -11,10 +11,12 @@ switch ( $_GET['pagenow'] ) :
|
||||
case 'page-new.php' :
|
||||
$man = 'pagemeta';
|
||||
break;
|
||||
case 'link-add.php' :
|
||||
case 'link.php' :
|
||||
$man = 'linkmeta';
|
||||
break;
|
||||
default:
|
||||
exit;
|
||||
break;
|
||||
endswitch;
|
||||
?>
|
||||
addLoadEvent( function() {var manager = new dbxManager('<?php echo $man; ?>');} );
|
||||
|
@ -25,8 +25,9 @@ for ($i=0; $i<count($wpvarstoreset); $i += 1) {
|
||||
}
|
||||
}
|
||||
|
||||
wp_enqueue_script( 'xfn' );
|
||||
$editing = true;
|
||||
wp_enqueue_script( array('xfn', 'dbx-admin-key?pagenow=link.php') );
|
||||
if ( current_user_can( 'manage_categories' ) )
|
||||
wp_enqueue_script( 'ajaxcat' );
|
||||
require('admin-header.php');
|
||||
?>
|
||||
|
||||
|
@ -102,8 +102,9 @@ switch ($action) {
|
||||
break;
|
||||
|
||||
case 'edit' :
|
||||
wp_enqueue_script( 'xfn' );
|
||||
$editing = true;
|
||||
wp_enqueue_script( array('xfn', 'dbx-admin-key?pagenow=link.php') );
|
||||
if ( current_user_can( 'manage_categories' ) )
|
||||
wp_enqueue_script( 'ajaxcat' );
|
||||
$parent_file = 'link-manager.php';
|
||||
$submenu_file = 'link-manager.php';
|
||||
$title = __('Edit Bookmark');
|
||||
|
Loading…
Reference in New Issue
Block a user