Sync arguments to plugin hooks to enable same function to be hooked on to both to enable backward compatible plugins. Fixes #8365 props strider72.
git-svn-id: http://svn.automattic.com/wordpress/trunk@9904 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7c68e6945a
commit
97bdf396f4
|
@ -287,8 +287,8 @@ function print_plugins_table($plugins, $context = '') {
|
|||
if ( current_user_can('edit_plugins') && is_writable(WP_PLUGIN_DIR . '/' . $plugin_file) )
|
||||
$action_links[] = '<a href="plugin-editor.php?file=' . $plugin_file . '" title="' . __('Open this file in the Plugin Editor') . '" class="edit">' . __('Edit') . '</a>';
|
||||
|
||||
$action_links = apply_filters('plugin_action_links', $action_links, $plugin_file, $plugin_data, $context);
|
||||
$action_links = apply_filters("plugin_action_links_$plugin_file", $action_links, $plugin_data, $context);
|
||||
$action_links = apply_filters( 'plugin_action_links', $action_links, $plugin_file, $plugin_data, $context );
|
||||
$action_links = apply_filters( "plugin_action_links_$plugin_file", $action_links, $plugin_file, $plugin_data, $context );
|
||||
|
||||
echo "
|
||||
<tr class='$context'>
|
||||
|
@ -302,7 +302,7 @@ function print_plugins_table($plugins, $context = '') {
|
|||
echo '</td>
|
||||
</tr>';
|
||||
do_action( 'after_plugin_row', $plugin_file, $plugin_data, $context );
|
||||
do_action( "after_plugin_row_$plugin_file", $plugin_data, $context );
|
||||
do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $context );
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
|
|
Loading…
Reference in New Issue