aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_register.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/14006] Add core.ucp_register_agreement eventZoddo2015-07-121-0/+10
| | | | | | It allows to execute code before the agreements are displayed. PHPBB3-14006
* [ticket/13578] Add ucp_register.php core eventsRMcGirr832015-02-221-1/+41
| | | | PHPBB3-13578
* Merge pull request #2765 from Elsensee/ticket/11863Joas Schilling2014-11-211-1/+2
|\ | | | | | | [ticket/11863] Set require_activation to none if emails are disabled
| * [ticket/11863] Grey out unavailable activation methods when emails disabledOliver Schramm2014-10-171-1/+2
| | | | | | | | | | | | | | Further fall back to USER_ACTIVATION_DISABLE when emails are disabled but evaluate it at runtime. PHPBB3-11863
* | [ticket/13248] Always use provider collection for getting providerMarc Alexander2014-11-011-2/+2
|/ | | | PHPBB3-13248
* [ticket/12858] Generate timezone selects with template loopMarc Alexander2014-09-171-3/+1
| | | | PHPBB3-12858
* [ticket/12990] Use the full services name for the notification's typesTristan Darricau2014-08-161-1/+1
| | | | PHPBB3-12990
* [ticket/11854] Rename captchas.factory service to captcha.factoryTristan Darricau2014-08-111-1/+1
| | | | PHPBB3-11854
* [ticket/11854] Move captcha stuff to phpbb/ and use DI for pluginsTristan Darricau2014-08-111-2/+1
| | | | PHPBB3-11854
* [ticket/10073] Split email validation from email ban and taken checksJoas Schilling2014-05-291-1/+1
| | | | PHPBB3-10073
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-4/+7
| | | | PHPBB3-12594
* [ticket/12254] Use a cookie instead of SID to store language selectionMatt Friedman2014-05-021-2/+9
| | | | PHPBB3-12254
* [ticket/12254] No longer need to add change_lang to the URL paramsMatt Friedman2014-04-111-5/+4
| | | | PHPBB3-12254
* [ticket/12254] Use 'language' instead of 'set_lang' as the variable nameMatt Friedman2014-04-111-2/+2
| | | | PHPBB3-12254
* [ticket/12254] Persist set_lang after reg only if changed from defaultMatt Friedman2014-04-071-2/+2
| | | | PHPBB3-12254
* [ticket/12254] Use new set_lang var to avoid conflict with change_langMatt Friedman2014-04-071-3/+3
| | | | PHPBB3-12254
* [ticket/12254] Better language switching on registration pageMatt Friedman2014-04-061-1/+0
| | | | PHPBB3-12254
* Merge remote-tracking branch 'github-nickvergessen/ticket/11201' into developNils Adermann2014-02-021-3/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * github-nickvergessen/ticket/11201: (50 commits) [ticket/11201] Remove empty calls section from .yml [ticket/11201] Split template file into multiple files [ticket/11201] Remove dependency from types on the manager [ticket/11201] Rename profilefields class to manager [ticket/11201] Fix parameter description [ticket/11201] Use !== null, its faster [ticket/11201] Also translate profile fields in UCP and ACP [ticket/11201] Add parameters and variables to profile field class [ticket/11201] Add commas on last array entry [ticket/11201] Allow translation of profile field name and explanation [ticket/11201] Fix some variable names [ticket/11201] Add tables to constructor in tests [ticket/11201] Add a method to return the translated full name of the type [ticket/11201] Remove db depending code from field class [ticket/11201] Add variables to classes and add constructor doc blocks [ticket/11201] Update copyright in class file [ticket/11201] Add visibility and remove unused variable [ticket/11201] Add some commas at the last array entry [ticket/11201] Cast some variables to integer [ticket/11201] Inject table names rather then using constants ... Conflicts: phpBB/config/services.yml
| * [ticket/11201] Rename profilefields class to managerJoas Schilling2014-02-021-1/+1
| | | | | | | | PHPBB3-11201
| * [ticket/11201] Make profile field classes autoloadableJoas Schilling2014-01-101-3/+1
| | | | | | | | PHPBB3-11201
* | Merge branch 'develop' of https://github.com/phpbb/phpbb into feature/passwordsMarc Alexander2013-12-291-34/+9
|\ \ | |/ | | | | | | Conflicts: phpBB/config/services.yml
| * [ticket/11746] Add "admin activation required" notification.Cesar G2013-10-241-34/+9
| | | | | | | | PHPBB3-11746
* | [feature/passwords] Use passwords manager service instead of functionsMarc Alexander2013-10-131-1/+4
|/ | | | | | | | | | | The old functions phpbb_hash() and phpbb_check_hash() have been replaced with the passwords manager service in all front-end related files. The phpBB2 converter and the release_3_0_5_rc1 migration file have not been changed. The same applies to the security/hash_test that still tests the function phpbb_check_hash(). This will however make sure that the old function still works. PHPBB3-11610
* [ticket/11868] Replace phpbb_request_interface referencesVjacheslav Trushkin2013-09-261-2/+2
| | | | PHPBB3-11868
* [feature/oauth] Merge branch 'develop' of git://github.com/phpbb/phpbb3 into ↵Joseph Warner2013-09-061-3/+3
|\ | | | | | | | | | | | | | | | | | | | | | | feature/oauth Conflicts: phpBB/composer.json phpBB/composer.lock phpBB/develop/create_schema_files.php phpBB/includes/ucp/ucp_register.php PHPBB3-11673
| * [ticket/11723] Correctly redirect user to agreement page and let him leaveMarc Alexander2013-07-221-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | This patch consists of two changes. The first one will make sure that $agree is correctly reset to 0 and the user redirected back to the agreement page after changing the display language. Secondly, by reseting 'change_lang', the user will be able to agree to the terms on the agreement page again. The changed language will still be kept, as this is correctly saved in the 'lang' field that is passed to the ucp_register page. The variable $agree has also been changed to be boolean. It is not used as an integer anywere in the ucp_register file. PHPBB3-11723
* | [feature/oauth] More small fixesJoseph Warner2013-09-021-1/+1
| | | | | | | | PHPBB3-11673
* | [feature/oauth] More minor changes from reviewJoseph Warner2013-09-021-2/+3
| | | | | | | | PHPBB3-11673
* | [feature/oauth] A few more minor changesJoseph Warner2013-08-241-0/+13
| | | | | | | | PHPBB3-11673
* | [feature/oauth] Login_link works with ucp_register nowJoseph Warner2013-07-311-7/+21
| | | | | | | | PHPBB3-11673
* | [feature/oauth] Login_link in registrationJoseph Warner2013-07-311-2/+50
|/ | | | PHPBB3-11673
* [ticket/11454] Use set_addresses in other applicable areasNathan Guse2013-04-241-2/+1
| | | | | | | | This should fix some other bugs that may not have yet been recognized--some areas only set to(), but sent according to user_notify_type, which is not necessarily email. PHPBB3-11454
* [ticket/11303] remove additional bracketsDhruv2013-02-121-1/+1
| | | | PHPBB3-11303
* [ticket/11303] add S_TZ_PRESELECT template varDhruv2013-02-081-0/+1
| | | | | | | add a new template variable to check if timezone has already been selected by the user while registeration. PHPBB3-11303
* [ticket/8713] Revert changes to ucp_profile, ucp_register and acp_users.Andreas Fischer2012-09-091-2/+2
| | | | | | | | | | | | | | | Currently only auth_db is supported there and the password needs to be trimmed for compatibility because user_password stores phpbb_hash(htmlspecialchars(trim($password))) Setting passwords for other auth modules is currently not supported. Once setting/changing passwords is supported by auth plugins, the untrimmed_variable() should be used here and the result should be passed to the auth plugin. PHPBB3-8713
* [ticket/8713] Rename untrimed_variable() to untrimmed_variable().Andreas Fischer2012-09-081-2/+2
| | | | PHPBB3-8713
* [ticket/8713] Do not trim login inputsNathaniel Guse2012-09-031-2/+2
| | | | | | | | | Create a function to request variables which are not trimmed. All requests for passwords (except forum passwords) now use the untrimmed request function. PHPBB3-8713
* [feature/new-tz-handling] Don't use global user but make it a parameterJoas Schilling2012-07-191-1/+1
| | | | PHPBB3-9558
* [feature/new-tz-handling] Properly name new timezone selection functionJoas Schilling2012-07-171-3/+3
| | | | | | Marked the old one as deprecated and made it using the new function. PHPBB3-9558
* [feature/new-tz-handling] Fix Timezone selection on registration pageJoas Schilling2012-06-181-1/+3
| | | | PHPBB3-9558
* [feature/new-tz-handling] Replace gmmktime() and mktime() with phpbb_datetimeJoas Schilling2012-06-181-3/+4
| | | | PHPBB3-9558
* [feature/new-tz-handling] Fix timezone selection on registration pageJoas Schilling2012-06-181-5/+5
| | | | PHPBB3-9558
* Merge remote-tracking branch 'imkingdavid/ticket/10535' into developOleg Pudeyev2012-02-031-9/+0
|\ | | | | | | | | | | | | | | | | | | * imkingdavid/ticket/10535: [ticket/10535] Delete no longer needed email confirm language entries. [ticket/10535] Delete email confirm from installer [ticket/10535] Removed email confirm field from acp_users module [ticket/10535] Forgot a subsilver2 change. *doh* [ticket/10535] Removed email confirm from UCP, removed unused language entries [ticket/10535] Remove email confirm check on registration form
| * [ticket/10535] Remove email confirm check on registration formDavid King2011-12-151-9/+0
| | | | | | | | PHPBB3-10535
* | Merge branch 'develop-olympus' into developAndreas Fischer2012-01-231-18/+2
|\ \ | | | | | | | | | | | | * develop-olympus: [ticket/10580] Remove checking of server timezone and DST when registering
| * | [ticket/10580] Remove checking of server timezone and DST when registeringRichard Foote2012-01-211-18/+2
| | | | | | | | | | | | | | | | | | | | | | | | Remove checking of server timezone and DST. It causes a problem by selecting the wrong timezone when registering when the board_timezone is 1 hour less than the server timezone. PHPBB3-10580
* | | [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-2/+1
| |/ |/| | | | | PHPBB3-9916
* | [ticket/10345] Fix some last use cases of sprintf() to use $user->lang()Joas Schilling2011-11-251-2/+2
| | | | | | | | PHPBB3-10345
* | Merge branch 'develop-olympus' into developIgor Wiedler2011-11-201-4/+1
|\ \ | |/ | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10446] Pass $config and $user via parameter to anti_abuse_headers(). [ticket/10446] Remove leftover $headers parameter from anti_abuse_headers(). [ticket/10446] RFC2047 encode user/server names in X-AntiAbuse headers. [ticket/10446] DRY X-AntiAbuse header addition. Conflicts: phpBB/includes/ucp/ucp_register.php
| * [ticket/10446] Pass $config and $user via parameter to anti_abuse_headers().Andreas Fischer2011-11-201-1/+1
| | | | | | | | PHPBB3-10446