Skip to content

Commit f5f43bb

Browse files
author
azaozz
committed
Fix updating of custom fields, fixes #17483
git-svn-id: http://core.svn.wordpress.org/trunk@17981 1a063a9b-81f0-0310-95a4-ce76da25c4cd
1 parent c70d21f commit f5f43bb

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

wp-includes/js/wp-lists.dev.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,8 +344,7 @@ wpList = {
344344
else
345345
list.append(e);
346346

347-
} else if ( 0 === $('#' + s.element).size() ) {
348-
347+
} else if ( 'comment' != s.what || 0 === $('#' + s.element).length ) {
349348
if ( s.pos < 0 ) {
350349
list.prepend(e);
351350
} else {

wp-includes/js/wp-lists.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wp-includes/script-loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ function wp_default_scripts( &$scripts ) {
112112
$scripts->add( 'autosave', "/wp-includes/js/autosave$suffix.js", array('schedule', 'wp-ajax-response'), '20110515' );
113113
$scripts->add_data( 'autosave', 'group', 1 );
114114

115-
$scripts->add( 'wp-lists', "/wp-includes/js/wp-lists$suffix.js", array('wp-ajax-response'), '20110518' );
115+
$scripts->add( 'wp-lists', "/wp-includes/js/wp-lists$suffix.js", array('wp-ajax-response'), '20110521' );
116116
$scripts->add_data( 'wp-lists', 'group', 1 );
117117

118118
$scripts->add( 'scriptaculous-root', '/wp-includes/js/scriptaculous/wp-scriptaculous.js', array('prototype'), '1.8.3');

0 commit comments

Comments
 (0)