aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/14944] Add possibility to search for template loop indexes by keyjaviexin2017-01-081-2/+14
| | | | | | | | | | Adds a new function to the template interface, and implements it in the context class. The function returns the ordinal index for a specified key, with the same structure that the key for alter_block_array. Reuses same code. Remove unneeded references, do nothing for int keys. Check out of bounds or wrong blockname errors. Added tests. PHPBB3-14944
* [ticket/14944] Add possibility to search for template loop indexes by keyjaviexin2016-12-301-5/+5
| | | | | | | | | Adds a new function to the template interface, and implements it in the context class. The function returns the ordinal index for a specified key, with the same structure that the key for alter_block_array. Reuses same code. Remove unneeded references, do nothing for int keys. PHPBB3-14944
* [ticket/14944] Add possibility to search for template loop indexes by keyjaviexin2016-12-283-0/+96
| | | | | | | | | Adds a new function to the template interface, and implements it in the context class. The function returns the ordinal index for a specified key, with the same structure that the key for alter_block_array. Reuses same code. PHPBB3-14944
* [ticket/14890] Typo in input validation of profile fields of type stringjaviexin2016-12-051-1/+1
| | | | | | This bug was introduced by PHPBB3-14272 PHPBB3-14890
* Merge pull request #4555 from javiexin/ticket/14888Tristan Darricau2016-12-041-0/+4
|\ | | | | | | | | | | | | [ticket/14888] Missing check for disabled profile field types * javiexin/ticket/14888: [ticket/14888] Missing check for disabled profile field types
| * [ticket/14888] Missing check for disabled profile field typesjaviexin2016-12-041-0/+4
| | | | | | | | | | | | Checks if a profile field type is enabled before using it. PHPBB3-14888
* | Merge pull request #4524 from senky/ticket/13479Marc Alexander2016-12-031-0/+22
|\ \ | | | | | | | | | [ticket/13479] Add core.viewtopic_highlight_modify
| * | [ticket/13479] Add core.viewtopic_highlight_modifyJakub Senko2016-11-201-0/+22
| | | | | | | | | | | | PHPBB3-13479
* | | Merge pull request #4522 from senky/ticket/13149Marc Alexander2016-12-031-3/+23
|\ \ \ | | | | | | | | | | | | [ticket/13149] Add core.phpbb_log_get_topic_auth_sql_before
| * | | [ticket/13149] Add core.phpbb_log_get_topic_auth_sql_beforeJakub Senko2016-11-201-3/+23
| | | | | | | | | | | | | | | | PHPBB3-13149
* | | | Merge pull request #4541 from marc1706/ticket/9590Tristan Darricau2016-12-032-0/+135
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/9590] Submit permissions form in chunks * marc1706/ticket/9590: [ticket/9590] Correctly update submit size and replace all forum_id[] [ticket/9590] Further deduplicate code for form data [ticket/9590] Preserve selected forums after previous page redirect [ticket/9590] Support ajax submit of permissions for specific forums [ticket/9590] Correctly set roles and refresh page using POST [ticket/9590] Submit permissions form in chunks when using "Apply all"
| * | | | [ticket/9590] Correctly update submit size and replace all forum_id[]Marc Alexander2016-11-271-3/+5
| | | | | | | | | | | | | | | | | | | | PHPBB3-9590
| * | | | [ticket/9590] Further deduplicate code for form dataMarc Alexander2016-11-261-10/+10
| | | | | | | | | | | | | | | | | | | | PHPBB3-9590
| * | | | [ticket/9590] Preserve selected forums after previous page redirectMarc Alexander2016-11-261-19/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also improved the way the forum ID list is generated when clicking on "Apply all permissions". PHPBB3-9590
| * | | | [ticket/9590] Support ajax submit of permissions for specific forumsMarc Alexander2016-11-261-9/+24
| | | | | | | | | | | | | | | | | | | | PHPBB3-9590
| * | | | [ticket/9590] Correctly set roles and refresh page using POSTMarc Alexander2016-11-261-3/+29
| | | | | | | | | | | | | | | | | | | | PHPBB3-9590
| * | | | [ticket/9590] Submit permissions form in chunks when using "Apply all"Marc Alexander2016-11-262-0/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will add an AJAX call that will submit the permissions form in chunks of 5 fieldsets when clicking on "Apply all permissions". PHPBB3-9590
* | | | | Merge pull request #4552 from nicebb/ticket/13757Marc Alexander2016-12-021-1/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | [ticket/13757] Properly fix bug with negative PM count
| * | | | | [ticket/13757] Properly fix bug with negative PM countVictor A. Safronov2016-12-021-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The fix from PR #4548 doesn't work as expected because in phpBB the sql_affectedrows() method always returns a count of matched rows instead of affected rows. This commit fixes bug properly. PHPBB3-13757
* | | | | | Merge pull request #4550 from hanakin/ticket/14881Marc Alexander2016-12-022-28/+32
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | [Ticket/14881] Add wrapper to jump actions to clear floats
| * | | | | [ticket/14881] Fix jumpbox-return link layouthanakin2016-12-011-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14881
| * | | | | [ticket/14881] Add action-bar wrap to jump actionshanakin2016-12-011-27/+29
| | |_|/ / | |/| | | | | | | | | | | | | PHPBB3-14881
* | | | | [ticket/13757] Prevents the count of unread PMs from being negativeVictor A. Safronov2016-11-301-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sometimes the user_unread_privmsg flag in users table can become negative. It happens when the unread message is requested by simultaneous concurrent requests. Both requests will decrement the value of the flag. This commit prevents updating the flag if the message already marked as read. PHPBB3-13757
* | | | | Merge pull request #4503 from rxu/ticket/14853Marc Alexander2016-11-271-0/+14
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | [ticket/14853] Add core event to allow modifying PM attachments download auth
| * | | | | [ticket/14853] Add core event to allow modifying PM attachments download authrxu2016-11-041-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14853
* | | | | | Merge pull request #4512 from senky/ticket/14863Marc Alexander2016-11-271-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [ticket/14863] Properly treat plural rules in confirmation box title
| * | | | | | [ticket/14863] Properly treat plural rules in confirmation box titleJakub Senko2016-11-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14863
* | | | | | | [ticket/14876] Allows multibyte strings for exception messagesVictor A. Safronov2016-11-251-1/+1
| |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All exception messages are sanitized via type_caster::set_var() which is called with $multibyte = false. This commit allows to pass multibyte messages as well. PHPBB3-14876
* | | | | | Merge pull request #4483 from marc1706/ticket/14750Tristan Darricau2016-11-241-1/+1
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14750] Remove html5 invalid attributes from attachment file input * marc1706/ticket/14750: [ticket/14750] Remove html5 invalid attributes from attachment file input
| * | | | | [ticket/14750] Remove html5 invalid attributes from attachment file inputMarc Alexander2016-10-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14750
* | | | | | Merge pull request #4502 from rxu/ticket/14852Marc Alexander2016-11-201-1/+11
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [ticket/14852] Add core event to modify email headers
| * | | | | | [ticket/14852] Add core event to modify email headersrxu2016-11-041-1/+11
| | |_|/ / / | |/| | | | | | | | | | | | | | | | PHPBB3-14852
* | | | | | Merge pull request #4511 from senky/ticket/14842Marc Alexander2016-11-203-2/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [ticket/14842] Don't display filesize limit if there is none
| * | | | | | [ticket/14842] Don't display filesize limit if there is noneJakub Senko2016-11-153-2/+3
| |/ / / / / | | | | | | | | | | | | | | | | | | PHPBB3-14842
* | | | | | [ticket/14850] Add core.generate_smilies_beforeJmz2016-11-201-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allows changing root_path of smilies to use CDN for example PHPBB3-14850
* | | | | | [ticket/14850] Add core.smiley_text_root_pathJmz2016-11-201-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allows changing root_path of smilies to use CDN for example PHPBB3-14850
* | | | | | Merge pull request #4519 from michaelcullum/ticket/14872Marc Alexander2016-11-201-3/+0
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | | | | | | [ticket/14872] Remove sizeof/count restriction
| * | | | | [ticket/14872] Remove sizeof/count restrictionMichael Cullum2016-11-191-3/+0
| | | | | | | | | | | | | | | | | | PHPBB3-14872
* | | | | | Merge pull request #4497 from senky/ticket/14849Marc Alexander2016-11-161-1/+17
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [ticket/14849] Add core.acp_extensions_run_action
| * | | | | | [ticket/14849] Add core.acp_extensions_run_actionJakub Senko2016-11-131-1/+17
| | |/ / / / | |/| | | | | | | | | | | | | | | | PHPBB3-14849
* | | | | | Merge pull request #4510 from senky/ticket/14864Marc Alexander2016-11-161-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [ticket/14864] Set maxlength=64 to dateformat in ACP
| * | | | | | [ticket/14864] Set maxlength=64 to dateformat in ACPJakub Senko2016-11-131-1/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | PHPBB3-14864
* | | | | | Merge pull request #4492 from marc1706/ticket/14831Tristan Darricau2016-11-142-0/+113
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14831] Make sure migrations always start with backslash * marc1706/ticket/14831: [ticket/14831] Rename migration and replace preg_replace() with simpler methods [ticket/14831] Compare depends_on for migrations and remove prefixless names [ticket/14831] Add migration for deduplicating entries and fix typo [ticket/14831] Add method for getting valid migration name [ticket/14831] Fall back to possible migration names instead of adding prefix [ticket/14831] Make sure migrations always start with backslash
| * | | | | | [ticket/14831] Rename migration and replace preg_replace() with simpler methodsMarc Alexander2016-10-252-6/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14831
| * | | | | | [ticket/14831] Compare depends_on for migrations and remove prefixless namesMarc Alexander2016-10-231-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14831
| * | | | | | [ticket/14831] Add migration for deduplicating entries and fix typoMarc Alexander2016-10-232-3/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14831
| * | | | | | [ticket/14831] Add method for getting valid migration nameMarc Alexander2016-10-231-26/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14831
| * | | | | | [ticket/14831] Fall back to possible migration names instead of adding prefixMarc Alexander2016-10-231-3/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of just adding the backslash as prefix if needed, this will take care of falling back to any possible migration with or without backslash no matter how the mgiration was saved in the database or called in the migrations file. This will result in a more robust migrator in regards to naming the migrations and previously run migrations. PHPBB3-14831
| * | | | | | [ticket/14831] Make sure migrations always start with backslashMarc Alexander2016-10-221-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The migration system expects every migration to start with a backslash. If depends on definitions do not supply that leading backslash, we should make sure it's added manually before calling the depends on migration. PHPBB3-14831
* | | | | | | Merge pull request #4488 from senky/ticket/14825Marc Alexander2016-11-132-1/+35
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | | | | | | | | | Add core.auth_oauth_login_after and core.auth_oauth_link_after