Kghbln has uploaded a new change for review. https://gerrit.wikimedia.org/r/140125
Change subject: Add license name for display on "Special:Version" * license short name according to spdx.org (http://www.mediawiki.org/wiki/Manual:$wgExtensionCredits#Usage) * minor "tweak" to author array ...................................................................... Add license name for display on "Special:Version" * license short name according to spdx.org (http://www.mediawiki.org/wiki/Manual:$wgExtensionCredits#Usage) * minor "tweak" to author array Change-Id: I1ad5e53124d3c5385ad2f76fc4d9142ef6474636 --- M Lingo.php 1 file changed, 10 insertions(+), 5 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Lingo refs/changes/25/140125/1 diff --git a/Lingo.php b/Lingo.php index 93c5107..7e1f9fc 100644 --- a/Lingo.php +++ b/Lingo.php @@ -44,11 +44,16 @@ // set extension credits // (no description here, it will be set later) $GLOBALS[ 'wgExtensionCredits' ][ 'parserhook' ][ 'lingo' ] = array( - 'path' => __FILE__, - 'name' => 'Lingo', - 'author' => array( 'Barry Coughlan', '[http://www.mediawiki.org/wiki/User:F.trott Stephan Gambke]', '...' ), - 'url' => 'https://www.mediawiki.org/wiki/Extension:Lingo', - 'version' => LINGO_VERSION, + 'path' => __FILE__, + 'name' => 'Lingo', + 'author' => array( + 'Barry Coughlan', + '[http://www.mediawiki.org/wiki/User:F.trott Stephan Gambke]', + '...' + ), + 'url' => 'https://www.mediawiki.org/wiki/Extension:Lingo', + 'version' => LINGO_VERSION, + 'license-name' => 'GPL-2.0+' ); // server-local path to this file -- To view, visit https://gerrit.wikimedia.org/r/140125 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I1ad5e53124d3c5385ad2f76fc4d9142ef6474636 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/Lingo Gerrit-Branch: master Gerrit-Owner: Kghbln <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
