Ticket #7856: after_row_patch.diff
| File after_row_patch.diff, 838 bytes (added by strider72, 4 years ago) |
|---|
-
wp-admin/plugins.php
309 309 $action_links[] = '<a href="plugin-editor.php?file=' . $plugin_file . '" title="' . __('Open this file in the Plugin Editor') . '" class="edit">' . __('Edit') . '</a>'; 310 310 311 311 $action_links = apply_filters('plugin_action_links', $action_links, $plugin_file, $plugin_data, $context); 312 $action_links = apply_filters("plugin_action_links_$plugin_file", $action_links, $plugin_data, $context); 312 313 313 314 echo " 314 315 <tr class='$context'> … … 322 323 echo '</td> 323 324 </tr>'; 324 325 do_action( 'after_plugin_row', $plugin_file, $plugin_data, $context ); 326 do_action( "after_plugin_row_$plugin_file", $plugin_data, $context ); 325 327 } 326 328 ?> 327 329 </tbody>
