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

git-svn-id: https://develop.svn.wordpress.org/trunk@23586 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2013-03-02 23:58:34 +00:00
parent 0c4b47f631
commit 22ec39f6e2
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;
};