mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CiteThisPage
synced 2024-12-12 07:45:11 +00:00
Follow-up on r56832: fixing some minor issues avar brought to attention about patch to bug 20218
This commit is contained in:
parent
22d58ec055
commit
020b5e7121
|
@ -10,7 +10,7 @@ $messages = array();
|
|||
$messages['en'] = array(
|
||||
'cite_article_desc' => 'Adds a [[Special:Cite|citation]] special page and toolbox link',
|
||||
'cite_article_link' => 'Cite this page',
|
||||
'cite_article_link_title' => 'Information how to cite this page',
|
||||
'cite_article_link_title' => 'Information on how to cite this page',
|
||||
'cite' => 'Cite',
|
||||
'cite_page' => 'Page:',
|
||||
'cite_submit' => 'Cite',
|
||||
|
|
|
@ -9,7 +9,6 @@ if (!defined('MEDIAWIKI')) die();
|
|||
* @link http://www.mediawiki.org/wiki/Extension:Cite/Special:Cite.php Documentation
|
||||
*
|
||||
* @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
|
||||
* @author Ireas <ireas@rkrahl.de>
|
||||
* @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
|
||||
*/
|
||||
|
@ -17,7 +16,7 @@ if (!defined('MEDIAWIKI')) die();
|
|||
$wgExtensionCredits['specialpage'][] = array(
|
||||
'path' => __FILE__,
|
||||
'name' => 'Cite',
|
||||
'author' => 'Ævar Arnfjörð Bjarmason, Ireas',
|
||||
'author' => 'Ævar Arnfjörð Bjarmason',
|
||||
'description' => 'adds a [[Special:Cite|citation]] special page & toolbox link', // kept for b/c
|
||||
'descriptionmsg' => 'cite_article_desc',
|
||||
'url' => 'http://www.mediawiki.org/wiki/Extension:Cite/Special:Cite.php'
|
||||
|
@ -47,7 +46,7 @@ function wfSpecialCiteNav( &$skintemplate, &$nav_urls, &$oldid, &$revid ) {
|
|||
}
|
||||
|
||||
/**
|
||||
* call the function that adds the cite link in the toolbar
|
||||
* add the cite link to the toolbar
|
||||
*/
|
||||
function wfSpecialCiteToolbox( &$skin ) {
|
||||
if ( isset( $skin->data['nav_urls']['cite'] ) ) {
|
||||
|
|
Loading…
Reference in a new issue