Changeset 9904
- Timestamp:
- 11/26/2008 03:23:51 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugins.php
r9903 r9904 288 288 $action_links[] = '<a href="plugin-editor.php?file=' . $plugin_file . '" title="' . __('Open this file in the Plugin Editor') . '" class="edit">' . __('Edit') . '</a>'; 289 289 290 $action_links = apply_filters( 'plugin_action_links', $action_links, $plugin_file, $plugin_data, $context);291 $action_links = apply_filters( "plugin_action_links_$plugin_file", $action_links, $plugin_data, $context);290 $action_links = apply_filters( 'plugin_action_links', $action_links, $plugin_file, $plugin_data, $context ); 291 $action_links = apply_filters( "plugin_action_links_$plugin_file", $action_links, $plugin_file, $plugin_data, $context ); 292 292 293 293 echo " … … 303 303 </tr>'; 304 304 do_action( 'after_plugin_row', $plugin_file, $plugin_data, $context ); 305 do_action( "after_plugin_row_$plugin_file", $plugin_ data, $context );305 do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $context ); 306 306 } 307 307 ?>
Note: See TracChangeset
for help on using the changeset viewer.