aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/profilefields
Commit message (Collapse)AuthorAgeFilesLines
...
* | [ticket/12759] Fix type_bool and type_dropdown's UCP fieldsShitiz Garg2014-06-272-2/+16
| | | | | | | | PHPBB3-12759
* | [ticket/12759] Remove lang_helper from profilefields_managerShitiz Garg2014-06-271-9/+1
| | | | | | | | | | | | No longer required PHPBB3-12759
* | [ticket/12759] Cache all lang_options in lang_helper insteadShitiz Garg2014-06-274-66/+34
| | | | | | | | PHPBB3-12759
* | [ticket/12759] Extra line in profilefields_managerShitiz Garg2014-06-271-1/+0
| | | | | | | | PHPBB3-12759
* | [ticket/12759] Add phpDoc comments to explain get_option_langShitiz Garg2014-06-271-0/+4
| | | | | | | | PHPBB3-12759
* | [ticket/12759] Little code cleanupShitiz Garg2014-06-271-5/+1
| | | | | | | | PHPBB3-12759
* | [ticket/12759] Make sure $field_id has unique elementsShitiz Garg2014-06-271-0/+1
| | | | | | | | | | | | Otherwise it would cause a bunch of repetitive IDs passed to the IN clause PHPBB3-12759
* | [ticket/12759] Cache the lang options earlierShitiz Garg2014-06-271-19/+28
| | | | | | | | | | | | Previously it would re-run on every post PHPBB3-12759
* | [ticket/12759] Cache lang options for all fields while displayingShitiz Garg2014-06-271-1/+28
| | | | | | | | | | | | | | | | | | Previously these would be fetched one field at one time, causing a large number of queries in case there were large number of custom profile fields and/or unique number of users in areas such as viewing topics. Resolve this by caching them at once when generating data for displaying them in templates. PHPBB3-12759
* | [ticket/12759] Allow multiple fields to be loaded via get_option_langShitiz Garg2014-06-273-10/+21
|/ | | | PHPBB3-12759
* [ticket/12730] Update maxlen for type_googleplus to 255Shitiz Garg2014-06-211-1/+1
| | | | PHPBB3-12730
* [ticket/12730] Update field_length to be 20 by default for Google+Shitiz Garg2014-06-211-1/+1
| | | | PHPBB3-12730
* [ticket/12730] Switch service name to googleplus for type_googleplusShitiz Garg2014-06-211-10/+2
| | | | PHPBB3-12730
* [ticket/12730] Restore field_length to 10 for type_googleplusShitiz Garg2014-06-211-5/+5
| | | | PHPBB3-12730
* [ticket/12730] Add missing brackets to type_googleplus.phpShitiz Garg2014-06-211-0/+2
| | | | PHPBB3-12730
* [ticket/12730] Use string template for Google+ CPF instead of a new oneShitiz Garg2014-06-211-0/+8
| | | | PHPBB3-12730
* [ticket/12730] Minor formatting fixesShitiz Garg2014-06-211-6/+6
| | | | PHPBB3-12730
* [ticket/12730] Incorrect indentation for type_googleplusShitiz Garg2014-06-211-21/+21
| | | | PHPBB3-12730
* [ticket/12730] Spaces in block headerShitiz Garg2014-06-211-10/+10
| | | | PHPBB3-12730
* [ticket/12730] Add Google+ profile field typeShitiz Garg2014-06-211-0/+56
| | | | | | | Google+ has a "+" before a custom URL but doesn't for those which are using their integer ID. To cover that we need to have an extra profile field PHPBB3-12730
* Merge pull request #2621 from Dragooon/ticket/12732Joas Schilling2014-06-201-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12732] Add Skype custom profile field * Dragooon/ticket/12732: [ticket/12732] Update schema.json for Skype [ticket/12732] Add functional test for Skype profile field [ticket/12732] Values shouldn't be escaped for schema_data.sql [ticket/12732] Set field_active to 1 for Skype's field [ticket/12732] Add unit tests for ALPHA_PUNCTUATION [ticket/12732] Missing comma after validation definition [ticket/12732] Improve ALPHA_PUNCTUATION description [ticket/12732] Use user info instead of chat as default Skype action [ticket/12732] Add Skype custom profile field Conflicts: phpBB/install/schemas/schema.json phpBB/install/schemas/schema_data.sql phpBB/language/en/memberlist.php tests/functional/ucp_profile_test.php tests/profilefields/type_string_test.php
| * [ticket/12732] Missing comma after validation definitionShitiz Garg2014-06-201-1/+1
| | | | | | | | PHPBB3-12732
| * [ticket/12732] Add Skype custom profile fieldShitiz Garg2014-06-201-0/+1
| | | | | | | | PHPBB3-12732
* | [ticket/12729] Move ALPHA_DOTS to above ALPHA_SPACERSShitiz Garg2014-06-201-1/+1
| | | | | | | | | | | | Have easier matches first for better performance PHPBB3-12729
* | [ticket/12729] Add Facebook custom profile fieldShitiz Garg2014-06-201-0/+1
|/ | | | PHPBB3-12729
* [ticket/12715] Cleanup comments in \phpbb\profilefields\*Tristan Darricau2014-06-157-7/+0
| | | | PHPBB3-12715
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-2712-38/+84
| | | | PHPBB3-12594
* [ticket/12335] Remove $ from descPayBas2014-05-031-2/+2
| | | | | | Come on travis, play nice this time PHPBB3-12335
* [ticket/12335] Added generate_profile_fields _ beforePayBas2014-05-031-0/+12
| | | | PHPBB3-12335
* [ticket/12335] Documentation fix and added use_contact_fieldsPayBas2014-05-031-2/+3
| | | | PHPBB3-12335
* [ticket/12335] Fix phpBB version numberPayBas2014-05-031-2/+2
| | | | PHPBB3-12335
* [ticket/12335] Add Events to phpbb\profilefields\managerPayBas2014-05-031-1/+31
| | | | PHPBB3-12335
* Merge remote-tracking branch 'github-nickvergessen/ticket/12331' into ↵Nils Adermann2014-04-101-0/+1
|\ | | | | | | | | | | | | | | develop-ascraeus * github-nickvergessen/ticket/12331: [ticket/12331] Add functional test for saving custom profile fields [ticket/12331] Fix SQL error when inserting a new entry to profile field data
| * [ticket/12331] Fix SQL error when inserting a new entry to profile field dataJoas Schilling2014-03-301-0/+1
| | | | | | | | | | | | | | | | | | | | There was a "Field 'pf_phpbb_interests' doesn't have a default value" error, because we didn't specify values for the disabled fields. We can not disable the sql_return_on_error() thou, because it otherwise we run into "Duplicate entry '2' for key 'PRIMARY'" errors when the user submits the form again but didn't change any values. PHPBB3-12331
* | [ticket/12282] Use interface for type hintingJoas Schilling2014-04-012-5/+5
|/ | | | PHPBB3-12282
* [ticket/9040] Count HTML entities as single in custom profile fieldsShitiz Garg2014-03-171-1/+1
| | | | | | | | | | | | | Currently when an user adds a HTML entity to a custom profile field, the length gets incremented by 4 since the code reads &gt; instead of <. However, the length is presentational and not DB storage so it should be treated as a single character even if it takes four lengths in the DB by being stored as a HTML entity. Work around this by decoding html entities before counting. Also, added unit tests for string field type PHPBB3-9040
* [ticket/12251] Add string validation for a-zA-Z0-9 and underscoreJoas Schilling2014-03-061-13/+14
| | | | PHPBB3-12251
* Merge pull request #2088 from nickvergessen/ticket/12236Nathan Guse2014-03-051-1/+1
|\ | | | | Ticket/12236 Convert AOL and Yahoo to custom profile fields
| * [ticket/12249] Fix "Undefined variable: row" when editing profileJoas Schilling2014-03-051-1/+1
| | | | | | | | PHPBB3-12249
* | Merge pull request #2058 from nickvergessen/ticket/12216Nathan Guse2014-03-051-0/+1
|\ \ | |/ |/| [ticket/12216] Undefined index: lang_options when creating date profile field
| * [ticket/12216] Undefined index: lang_options when creating date profile fieldJoas Schilling2014-02-241-0/+1
| | | | | | | | PHPBB3-12216
* | [ticket/12187] Do not make clickable when using as contact fieldJoas Schilling2014-03-045-27/+53
| | | | | | | | PHPBB3-12187
* | [ticket/12187] Split generate_profile_fields_template() into 2 methodsJoas Schilling2014-03-041-96/+96
| | | | | | | | | | | | Removing the mode switch that wraps the content of the method PHPBB3-12187
* | [ticket/12187] Add URL type for profile fieldsJoas Schilling2014-03-033-2/+85
| | | | | | | | PHPBB3-12187
* | [ticket/12233] Allow profile fields to be contact fieldsJoas Schilling2014-02-281-0/+19
| | | | | | | | | | | | | | | | Contact fields are displayed with in the contact section of the user profile and are displayed differently in the mini profile next to posts and private messages PHPBB3-12233
* | Merge remote-tracking branch 'nickvergessen/ticket/12205' into ↵Joas Schilling2014-02-251-1/+1
|/ | | | | | | | | | ticket/12205-develop * nickvergessen/ticket/12205: [ticket/12205] Do not display 0 for empty integers when show_novalue is off Conflicts: phpBB/includes/functions_profile_fields.php
* [ticket/12184] Fix undefined variable tpl_fields in profile field managerJoas Schilling2014-02-111-0/+2
| | | | PHPBB3-12184
* [ticket/12169] Split mode==headline into it's own functionJoas Schilling2014-02-101-23/+30
| | | | PHPBB3-12169
* [ticket/12169] Allow displaying profile fields on memberlistJoas Schilling2014-02-101-2/+28
| | | | | | | We can not sort by profile field values atm. And also I'm not sure whether this is possible at all. PHPBB3-12169
* [ticket/12169] Convert user_from to profile field locationJoas Schilling2014-02-101-1/+1
| | | | | | Missing changes on memberlist view due to missing functionality PHPBB3-12169