Could not test registration due to http://tracker.phpbb.com/browse/PHPBB3-10477.
There are two other locations where we ask for email confirmation. One is installer, and for that I have https://github.com/p/phpbb3/commit/1469 ... c2944e21d3 (untested).
The other one is acp, and I think it's safe to remove email confirmation there. Browsers only autocomplete email addresses when the input field is empty, and we cannot ever have it empty, can we?
[RFC|Merged] Delete "Confirm e-mail address"
Re: [RFC] Delete "Confirm e-mail address" from registration
What about edit account settings in UCP?
Formerly known as Unknown Bliss
No unsolicited PMs please except for quotes.psoTFX wrote: I went with Olympus because as I said to the teams ... "It's been one hell of a hill to climb"
- imkingdavid
- Registered User
- Posts: 1050
- Joined: Thu Jul 30, 2009 12:06 pm
Re: [RFC] Delete "Confirm e-mail address" from registration
Unknown Bliss wrote:What about edit account settings in UCP?
Same thing.imkingdavid wrote:The pull request is ready and has deleted the field from both the registration form and the profile registration details form.
EDIT: I have also removed it from acp_users. Oleg, is it okay if I implement your commit into my patch?
Re: [RFC] Delete "Confirm e-mail address" from registration
Yes, I was hoping you'd say that (you'll need to fix the commit message).
Re: [RFC] Delete "Confirm e-mail address" from registration
Not sure what you did with my commit but you could have cherry-picked it and then amended it to rewrite the commit message:
git cherry-pick <sha1>
git commit --amend
git cherry-pick <sha1>
git commit --amend
- imkingdavid
- Registered User
- Posts: 1050
- Joined: Thu Jul 30, 2009 12:06 pm
Re: [RFC] Delete "Confirm e-mail address" from registration
I just did it the "hard" way by performing all the actions myself. I didn't know about that method, but I'll keep that in mind for future reference.Oleg wrote:Not sure what you did with my commit but you could have cherry-picked it and then amended it to rewrite the commit message:
git cherry-pick <sha1>
git commit --amend
Re: [RFC] Delete "Confirm e-mail address" from registration
And I just found out we already have a ticket to change email addresses on unactivated user accounts:
http://tracker.phpbb.com/browse/PHPBB3-9894
http://tracker.phpbb.com/browse/PHPBB3-9894
- imkingdavid
- Registered User
- Posts: 1050
- Joined: Thu Jul 30, 2009 12:06 pm
Re: [RFC] Delete "Confirm e-mail address" from registration
Well then there's really no reason not to do this patch if that is going to be implemented as well.Oleg wrote:And I just found out we already have a ticket to change email addresses on unactivated user accounts:
http://tracker.phpbb.com/browse/PHPBB3-9894
Re: [RFC] Delete "Confirm e-mail address" from registration
Indeed I think that would be the proper solution, so let's merge this one.
As for the commit, it's also better to cherry-pick commits, simply because we want to keep track of who wrote what originally, and Oleg will not show up as the author of that commit now. You can change the author of the latest commit by running git commit --amend --author "A Name <[email protected]>".
As for the commit, it's also better to cherry-pick commits, simply because we want to keep track of who wrote what originally, and Oleg will not show up as the author of that commit now. You can change the author of the latest commit by running git commit --amend --author "A Name <[email protected]>".
- imkingdavid
- Registered User
- Posts: 1050
- Joined: Thu Jul 30, 2009 12:06 pm
Re: [RFC] Delete "Confirm e-mail address" from registration
All done, I also changed the commit message to his original one and prepended it with the proper branch name.naderman wrote:Indeed I think that would be the proper solution, so let's merge this one.
As for the commit, it's also better to cherry-pick commits, simply because we want to keep track of who wrote what originally, and Oleg will not show up as the author of that commit now. You can change the author of the latest commit by running git commit --amend --author "A Name <[email protected]>".