Skip to content

Commit

Permalink
Remove remaining occurences of author_home
Browse files Browse the repository at this point in the history
Show Piwik for all core plugins

fixes #4578
  • Loading branch information
halfdan committed Jan 28, 2014
1 parent cae15a3 commit 3f6381b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions core/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@
* - **description**: An internationalized string description of what the plugin
* does.
* - **homepage**: The URL to the plugin's website.
* - **author**: Author name.
* - **author_homepage**: The URL to the author's website.
* - **authors**: A list of author arrays with keys for 'name', 'email' and 'homepage'
* - **license**: The license the code uses (eg, GPL, MIT, etc.).
* - **license_homepage**: URL to website describing the license used.
* - **version**: The plugin version (eg, 1.0.1).
Expand Down Expand Up @@ -298,4 +297,4 @@ public static function getPluginNameFromBacktrace($backtrace)
}
return false;
}
}
}
3 changes: 1 addition & 2 deletions core/Plugin/MetadataLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ private function getDefaultPluginInformation()
return array(
'description' => Piwik::translate($descriptionKey),
'homepage' => 'http://piwik.org/',
'author' => 'Piwik',
'author_homepage' => 'http://piwik.org/',
'authors' => array(array('name' => 'Piwik', 'homepage' => 'http://piwik.org/')),
'license' => 'GPL v3+',
'license_homepage' => 'http://www.gnu.org/licenses/gpl.html',
'version' => Version::VERSION,
Expand Down

0 comments on commit 3f6381b

Please sign in to comment.