Last modified: 2014-05-18 15:38:45 UTC
Hi please update login and create account buttons because the layout and look of them was changed in 1.20 when they separated them into create account and then login so please update the looks and the create account could be redirect to special request account. I am running Mediawiki 1.22 Wmf 20. I was told to file a bug here at https://www.mediawiki.org/wiki/Thread:Project:Support_desk/Create_account_/_login_in_extension:confirmaccount
Please stop setting "blocker" severity for all of your bug reports. The meaning of blocker is defined here: https://www.mediawiki.org/wiki/Bugzilla/Fields#importance . This is obviously not a blocker at all. For the bug report itself, please provide a screenshot which icons you refer to.
OK
Unfortunately closing this report as no further information has been provided. paladox2015: Please feel free to reopen this report if you can provide the information asked for in comment 1 and if this still happens. Thanks!
Hi This is a feature request.
(In reply to paladox2015 from comment #4) > Hi This is a feature request. Comment 1 had open requests. Anyway, this ticket is closed now anyway.
hi please add the following to this https://git.wikimedia.org/blob/mediawiki%2Fextensions%2FConfirmAccount/8371f282499d2f715a56ed18b6a9fa0b0e8e3e8b/frontend%2FConfirmAccountUI.hooks.php please the link is for request account and would be next to login $wgHooks['PersonalUrls'][] = 'onPersonalUrls'; function onPersonalUrls( array &$personal_urls, Title $title, SkinTemplate $skin ) { // Add a link to Special:RequestAccount if a link exists for login if ( isset( $personal_urls['login'] ) || isset( $personal_urls['anonlogin'] ) ) { $personal_urls['createaccount'] = array( 'text' => wfMessage( 'requestaccount' )->text(), 'href' => SpecialPage::getTitleFor( 'RequestAccount' )->getFullURL() ); } return true; } and please also change this code in that link it will change the name of link from login/create account to login public static function setRequestLoginLinks( array &$personal_urls, &$title ) { if ( isset( $personal_urls['anonlogin'] ) ) { $personal_urls['anonlogin']['text'] = wfMessage( 'login' )->escaped(); } elseif ( isset( $personal_urls['login'] ) ) { $personal_urls['login']['text'] = wfMessage( 'login' )->escaped(); } return true; }
You are welcome to use Developer access https://www.mediawiki.org/wiki/Developer_access to submit this as a patch (Git branch) directly into Gerrit: https://www.mediawiki.org/wiki/Git/Tutorial Putting your branch in Git makes it easier to review it quickly. If you don't want to set up Git/Gerrit, you can also use https://tools.wmflabs.org/gerrit-patch-uploader/
Ok thanks.
hi I am trying to use the uploader but I doint know how to use it I have a mediawiki account but it says that it is not a unified diff patch
Created attachment 15427 [details] this is the first code change
Created attachment 15428 [details] 2nd patch this is the 2nd patch read details for the files located
Created attachment 15429 [details] ingor the 1st patch this is the updated 1st patch
(In reply to paladox2015 from comment #9) > hi I am trying to use the uploader but I doint know how to use it I have a > mediawiki account but it says that it is not a unified diff patch Could you please use proper punctuation as it makes text way more readable? See https://en.wikipedia.org/wiki/Punctuation for the general concept. "man diff" explains how to create a unified patch, and the stuff you uploaded here is not a patch, see https://en.wikipedia.org/wiki/Patch_%28Unix%29 (Discussing this is out of scope for this specific bug report, and this bug report is closed anyway.)