Allow long plugin upgrade notices to wrap. Props duck_. fixes #14068

git-svn-id: https://develop.svn.wordpress.org/trunk@16663 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-12-01 20:07:22 +00:00
parent a7d80782f2
commit 6ba1ad81c4
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ function list_plugin_updates() {
echo " echo "
<tr class='active'> <tr class='active'>
<th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($plugin_file) . "' /></th> <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($plugin_file) . "' /></th>
<td class='plugin-title'><strong>{$plugin_data->Name}</strong>" . sprintf(__('You have version %1$s installed. Update to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . $compat . $upgrade_notice . "</td> <td><strong>{$plugin_data->Name}</strong><br />" . sprintf(__('You have version %1$s installed. Update to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . $compat . $upgrade_notice . "</td>
</tr>"; </tr>";
} }
?> ?>