=== modified file 'wp-admin/admin-functions.php'
|
|
|
2167 | 2167 | } else { |
2168 | 2168 | $author = '<a href="' . trim( $author_uri[1] ) . '" title="'.__( 'Visit author homepage' ).'">' . trim( $author_name[1] ) . '</a>'; |
2169 | 2169 | } |
2170 | | |
2171 | | return array ('Name' => $name, 'Title' => $plugin, 'Description' => $description, 'Author' => $author, 'Version' => $version, 'Template' => $template[1] ); |
| 2170 | |
| 2171 | return apply_filters("get_plugin_data", array ('Name' => $name, 'Title' => $plugin, 'Description' => $description, 'Author' => $author, 'Version' => $version, 'Template' => $template[1] )); |
2172 | 2172 | } |
2173 | 2173 | |
2174 | 2174 | /** |