Skip to content

Commit

Permalink
Plugins: Add a missing space between classes on <td> element for cu…
Browse files Browse the repository at this point in the history
…stom columns of the Plugins list table.

Props crstauf.
Fixes #37460.
Built from https://develop.svn.wordpress.org/trunk@38149


git-svn-id: http://core.svn.wordpress.org/trunk@38090 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
SergeyBiryukov committed Jul 25, 2016
1 parent 18601e4 commit fdc0753
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wp-admin/includes/class-wp-plugins-list-table.php
Expand Up @@ -816,7 +816,7 @@ public function single_row( $item ) {
echo "</div></td>";
break;
default:
$classes = "$column_name column-$column_name$class";
$classes = "$column_name column-$column_name $class";

echo "<td class='$classes{$extra_classes}'>";

Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Expand Up @@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.6-beta4-38148';
$wp_version = '4.6-beta4-38149';

/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
Expand Down

0 comments on commit fdc0753

Please sign in to comment.