Ticket #17451: after_updates_row.diff
File after_updates_row.diff, 1.2 KB (added by , 14 years ago) |
---|
-
wp-admin/update-core.php
244 244 <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($plugin_file) . "' /></th> 245 245 <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> 246 246 </tr>"; 247 248 do_action( 'after_plugin_updates_row', $plugin_file, $plugin_data ); 247 249 } 248 250 ?> 249 251 </tbody> … … 294 296 <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($stylesheet) . "' /></th> 295 297 <td class='plugin-title'><img src='$screenshot' width='64' height='64' style='float:left; padding: 5px' /><strong>{$theme_data->Name}</strong>" . sprintf(__('You have version %1$s installed. Update to %2$s.'), $theme_data->Version, $theme_data->update['new_version']) . "</td> 296 298 </tr>"; 299 300 do_action( 'after_theme_updates_row', $theme_data->Name, $theme_data ); 297 301 } 298 302 ?> 299 303 </tbody>