Take out undefined variable. fixes #2781

git-svn-id: https://develop.svn.wordpress.org/trunk@5259 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
rob1n 2007-04-12 21:43:38 +00:00
parent 3b2de5b5df
commit 23bd5c2fec
1 changed files with 1 additions and 1 deletions

View File

@ -1759,7 +1759,7 @@ function get_plugin_data( $plugin_file ) {
$author = '<a href="' . trim( $author_uri[1] ) . '" title="'.__( 'Visit author homepage' ).'">' . trim( $author_name[1] ) . '</a>';
}
return array ('Name' => $name, 'Title' => $plugin, 'Description' => $description, 'Author' => $author, 'Version' => $version, 'Template' => $template[1] );
return array('Name' => $name, 'Title' => $plugin, 'Description' => $description, 'Author' => $author, 'Version' => $version);
}
function get_plugins() {