Fix checkbox synchronization on Edit Link screen. fixes #23670.

git-svn-id: http://core.svn.wordpress.org/trunk@23586 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2013-03-02 23:58:34 +00:00
parent 72e1b2fbc3
commit 9791dc695b
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ jQuery(document).ready( function($) {
return;
noSyncChecks = true;
var th = $(this), c = th.is(':checked'), id = th.val().toString();
$('#in-link-category-' + id + ', #in-popular-category-' + id).prop( 'checked', c );
$('#in-link-category-' + id + ', #in-popular-link_category-' + id).prop( 'checked', c );
noSyncChecks = false;
};