Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [ticket/12594] Remove @package tags and update file headers | Yuriy Rusko | 2014-05-27 | 12 | -38/+84 |
| | | | | PHPBB3-12594 | ||||
* | [ticket/12335] Remove $ from desc | PayBas | 2014-05-03 | 1 | -2/+2 |
| | | | | | | Come on travis, play nice this time PHPBB3-12335 | ||||
* | [ticket/12335] Added generate_profile_fields _ before | PayBas | 2014-05-03 | 1 | -0/+12 |
| | | | | PHPBB3-12335 | ||||
* | [ticket/12335] Documentation fix and added use_contact_fields | PayBas | 2014-05-03 | 1 | -2/+3 |
| | | | | PHPBB3-12335 | ||||
* | [ticket/12335] Fix phpBB version number | PayBas | 2014-05-03 | 1 | -2/+2 |
| | | | | PHPBB3-12335 | ||||
* | [ticket/12335] Add Events to phpbb\profilefields\manager | PayBas | 2014-05-03 | 1 | -1/+31 |
| | | | | PHPBB3-12335 | ||||
* | Merge remote-tracking branch 'github-nickvergessen/ticket/12331' into ↵ | Nils Adermann | 2014-04-10 | 1 | -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 data | Joas Schilling | 2014-03-30 | 1 | -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 hinting | Joas Schilling | 2014-04-01 | 2 | -5/+5 |
|/ | | | | PHPBB3-12282 | ||||
* | [ticket/9040] Count HTML entities as single in custom profile fields | Shitiz Garg | 2014-03-17 | 1 | -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 > 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 underscore | Joas Schilling | 2014-03-06 | 1 | -13/+14 |
| | | | | PHPBB3-12251 | ||||
* | Merge pull request #2088 from nickvergessen/ticket/12236 | Nathan Guse | 2014-03-05 | 1 | -1/+1 |
|\ | | | | | Ticket/12236 Convert AOL and Yahoo to custom profile fields | ||||
| * | [ticket/12249] Fix "Undefined variable: row" when editing profile | Joas Schilling | 2014-03-05 | 1 | -1/+1 |
| | | | | | | | | PHPBB3-12249 | ||||
* | | Merge pull request #2058 from nickvergessen/ticket/12216 | Nathan Guse | 2014-03-05 | 1 | -0/+1 |
|\ \ | |/ |/| | [ticket/12216] Undefined index: lang_options when creating date profile field | ||||
| * | [ticket/12216] Undefined index: lang_options when creating date profile field | Joas Schilling | 2014-02-24 | 1 | -0/+1 |
| | | | | | | | | PHPBB3-12216 | ||||
* | | [ticket/12187] Do not make clickable when using as contact field | Joas Schilling | 2014-03-04 | 5 | -27/+53 |
| | | | | | | | | PHPBB3-12187 | ||||
* | | [ticket/12187] Split generate_profile_fields_template() into 2 methods | Joas Schilling | 2014-03-04 | 1 | -96/+96 |
| | | | | | | | | | | | | Removing the mode switch that wraps the content of the method PHPBB3-12187 | ||||
* | | [ticket/12187] Add URL type for profile fields | Joas Schilling | 2014-03-03 | 3 | -2/+85 |
| | | | | | | | | PHPBB3-12187 | ||||
* | | [ticket/12233] Allow profile fields to be contact fields | Joas Schilling | 2014-02-28 | 1 | -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 Schilling | 2014-02-25 | 1 | -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 manager | Joas Schilling | 2014-02-11 | 1 | -0/+2 |
| | | | | PHPBB3-12184 | ||||
* | [ticket/12169] Split mode==headline into it's own function | Joas Schilling | 2014-02-10 | 1 | -23/+30 |
| | | | | PHPBB3-12169 | ||||
* | [ticket/12169] Allow displaying profile fields on memberlist | Joas Schilling | 2014-02-10 | 1 | -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 location | Joas Schilling | 2014-02-10 | 1 | -1/+1 |
| | | | | | | Missing changes on memberlist view due to missing functionality PHPBB3-12169 | ||||
* | [ticket/12115] Add methods to interface | Joas Schilling | 2014-02-06 | 1 | -2/+10 |
| | | | | PHPBB3-12115 | ||||
* | [ticket/12115] Translate profile field name before displaying it in errors | Joas Schilling | 2014-02-06 | 7 | -14/+31 |
| | | | | PHPBB3-12115 | ||||
* | [ticket/12159] Fix codesniffer complaints due to profilefields and passwords | Marc Alexander | 2014-02-03 | 4 | -4/+2 |
| | | | | | | | The two PRs regarding profilefields and passwords manager that were recently merged caused a few codesniffer complaints that are fixed by these changes. PHPBB3-12159 | ||||
* | [ticket/11201] Split template file into multiple files | Joas Schilling | 2014-02-02 | 1 | -2/+10 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Remove dependency from types on the manager | Joas Schilling | 2014-02-02 | 5 | -74/+39 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Rename profilefields class to manager | Joas Schilling | 2014-02-02 | 4 | -19/+19 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Also translate profile fields in UCP and ACP | Joas Schilling | 2014-01-19 | 1 | -2/+2 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Add parameters and variables to profile field class | Joas Schilling | 2014-01-19 | 1 | -1/+46 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Add commas on last array entry | Joas Schilling | 2014-01-19 | 1 | -2/+2 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Allow translation of profile field name and explanation | Joas Schilling | 2014-01-19 | 1 | -4/+4 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Fix some variable names | Joas Schilling | 2014-01-18 | 1 | -1/+1 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Add a method to return the translated full name of the type | Joas Schilling | 2014-01-18 | 9 | -10/+25 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Remove db depending code from field class | Joas Schilling | 2014-01-18 | 1 | -35/+4 |
| | | | | | | sql_build_array() should already take care of that PHPBB3-11201 | ||||
* | [ticket/11201] Add variables to classes and add constructor doc blocks | Joas Schilling | 2014-01-18 | 7 | -0/+196 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Update copyright in class file | Joas Schilling | 2014-01-18 | 1 | -1/+1 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Add visibility and remove unused variable | Joas Schilling | 2014-01-18 | 1 | -2/+1 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Add some commas at the last array entry | Joas Schilling | 2014-01-18 | 2 | -6/+6 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Cast some variables to integer | Joas Schilling | 2014-01-18 | 2 | -9/+9 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Inject table names rather then using constants | Joas Schilling | 2014-01-18 | 2 | -10/+22 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Change type from integer to service name | Joas Schilling | 2014-01-17 | 10 | -16/+85 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Move custom template variable assignment to type class | Joas Schilling | 2014-01-17 | 7 | -11/+82 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Move preparation of hidden fields to type class | Joas Schilling | 2014-01-17 | 5 | -0/+101 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Allow manipulating the intended variables with the type class | Joas Schilling | 2014-01-17 | 7 | -0/+174 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Move type specific error messages to type class | Joas Schilling | 2014-01-17 | 4 | -0/+43 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Add abstract base class with shared methods | Joas Schilling | 2014-01-17 | 8 | -91/+59 |
| | | | | PHPBB3-11201 | ||||
* | [ticket/11201] Move field type depending preparation of the options to class | Joas Schilling | 2014-01-17 | 6 | -0/+55 |
| | | | | PHPBB3-11201 |