aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_privmsgs.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/16111] Add core.message_history_modify_sql_aryDark❶2019-07-281-1/+1
| | | | PHPBB3-16111
* [ticket/16111] Add core.message_history_modify_sql_aryDark❶2019-07-281-13/+8
| | | | PHPBB3-16111
* [ticket/16111] Add core.message_history_modify_sql_aryDark❶2019-07-281-6/+33
| | | | PHPBB3-16111
* Merge pull request #5572 from dark-1/ticket/16023Marc Alexander2019-07-221-3/+20
|\ | | | | | | [ticket/16023] Add core.message_history_modify_template_vars
| * [ticket/16023] Add core.message_history_modify_template_varsDark❶2019-05-071-1/+1
| | | | | | | | PHPBB3-16023
| * [ticket/16023] Add core.message_history_modify_template_varsDark❶2019-04-201-1/+1
| | | | | | | | PHPBB3-16023
| * [ticket/16023] Add core.message_history_modify_template_varsDark❶2019-04-201-1/+1
| | | | | | | | PHPBB3-16023
| * [ticket/16023] Add core.message_history_modify_template_varsDark❶2019-04-201-2/+19
| | | | | | | | PHPBB3-16023
* | [ticket/16075] Fix warning in PM filterJakub Senko2019-06-071-1/+1
|/ | | | PHPBB3-16075
* [ticket/14972] replace all occurrences of sizeof() with the count()rxu2018-01-011-33/+33
| | | | PHPBB3-14972
* Merge pull request #4443 from Crizz0/ticket/14780Marc Alexander2017-01-041-3/+2
|\ | | | | | | [ticket/14780] Correction to let group setting overwrite global PM setting
| * [ticket/14780] Only use $max_setting in this functionCrizzo2016-09-151-3/+2
| | | | | | | | PHPBB3-14780
| * [ticket/14780] Correct if sentence to let group setting overwrite globalCrizzo2016-09-121-1/+1
| | | | | | | | PHPBB3-14780
* | Merge branch '3.1.x' into 3.2.xMarc Alexander2016-12-021-1/+2
|\ \
| * | [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 branch '3.1.x' into 3.2.xMarc Alexander2016-12-011-0/+6
|\ \ \ | |/ / | | / | |/ |/|
| * [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
* | [ticket/10961] Send HTTP 403 when applicableJakub Senko2016-09-011-0/+2
| | | | | | | | PHPBB3-10961
* | [ticket/13454] Remove more unused variablesMarc Alexander2016-01-061-2/+0
| | | | | | | | | | | | This should be the last part. Off to checking if the changes were correct. PHPBB3-13454
* | [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-10/+5
| | | | | | | | | | | | This is part 5 and there is more to come. PHPBB3-13454
* | [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-1/+1
| | | | | | | | | | | | Part 4 PHPBB3-13454
* | [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-4/+2
| | | | | | | | | | | | This is part 2 of the pr. PHPBB3-13454
* | [ticket/14325] Fix variable names in docblocksMate Bartus2015-11-301-1/+1
| | | | | | | | PHPBB3-14325
* | [ticket/14325] Preserve event variable BCMate Bartus2015-11-301-56/+54
| | | | | | | | PHPBB3-14325
* | Merge branch '3.1.x'Marc Alexander2015-11-121-1/+1
|\ \ | |/
| * [ticket/14276] Adjust function get_folder_statusRichard McGirr2015-11-071-1/+1
| | | | | | | | PHPBB3-14276
* | Merge pull request #3965 from marc1706/ticket/14234Tristan Darricau2015-10-141-4/+12
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14234] Use replacement variables instead of references in events * marc1706/ticket/14234: [ticket/14234] Fix event doc blocks [ticket/14234] Get rid of undefined variables [ticket/14234] Fix change version and remove more references [ticket/14234] Replace more references with variables [ticket/14234] Use replacement variables instead of references in events
| * | [ticket/14234] Fix change version and remove more referencesMarc Alexander2015-10-121-4/+12
| | | | | | | | | | | | PHPBB3-14234
* | | [ticket/14168] Use attachment manager instead of separate classesMarc Alexander2015-10-121-8/+8
| | | | | | | | | | | | PHPBB3-14168
* | | [ticket/14168] No longer use deprecated functions in core filesMarc Alexander2015-10-091-12/+8
|/ / | | | | | | PHPBB3-14168
* | [ticket/12143] Replace group name outputOliver Schramm2015-08-051-5/+11
| | | | | | | | | | | | So now we can use translated group names for non-special groups PHPBB3-12143
* | [ticket/11444] Moving the in-board notifications to a method classNicofuma2015-07-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently the in-board method for the notifications is hardcoded and cannot be disabled. This method should be in his own class extending `phpbb\notification\method\method_interface`. It also add the possibility, for each method, to be enabled by default (ie: no entry in the DB => notification enabled). https://tracker.phpbb.com/browse/PHPBB3-11444 https://tracker.phpbb.com/browse/PHPBB3-11967 PHPBB3-11444
* | [ticket/10620] Added enhanced quotes in pm historyJoshyPHP2015-06-251-0/+2
| | | | | | | | PHPBB3-10620
* | Merge pull request #3383 from nickvergessen/ticket/9109Tristan Darricau2015-05-291-5/+30
|\ \ | | | | | | | | | Ticket/9109 Properly document and calculate the group settings with value 0
| * | [ticket/9109] Improve docblock and fix spelling errorsMarc Alexander2015-02-081-0/+1
| | | | | | | | | | | | PHPBB3-9109
| * | [ticket/9109] Only query database once in phpbb_get_max_setting_from_groupMarc Alexander2015-02-081-20/+5
| | | | | | | | | | | | | | | | | | More test cases have been added, too. PHPBB3-9109
| * | [ticket/9109] Properly document and calculate the group settings with value 0Joas Schilling2015-02-081-5/+44
| | | | | | | | | | | | PHPBB3-9109
* | | Merge branch '3.1.x'Marc Alexander2015-02-181-13/+1
|\ \ \ | | |/ | |/|
| * | [ticket/13595] Removed unused codeJoshyPHP2015-02-131-13/+1
| | | | | | | | | | | | PHPBB3-13595
* | | Merge branch 'develop-ascraeus' into developAndreas Fischer2015-02-111-2/+2
|\ \ \ | |/ / | | / | |/ |/| * develop-ascraeus: [ticket/13597] Modify variable-variable syntax to be compatible with PHP7
| * [ticket/13597] Modify variable-variable syntax to be compatible with PHP7Marc Alexander2015-02-111-2/+2
| | | | | | | | PHPBB3-13597
* | [ticket/13455] Update calls to `request_var()`Gaëtan Muller2015-02-031-5/+5
| | | | | | | | PHPBB3-13455
* | [ticket/13496] Update calls to `set_config_count()`Gaëtan Muller2015-02-021-2/+2
| | | | | | | | PHPBB3-13496
* | [ticket/13450] Type-hint return value of $phpbb_container->get()Gaëtan Muller2015-01-121-0/+4
|/ | | | PHPBB3-13450
* [ticket/13205] Explicitly cast ids to integers and reformat SQLNils Adermann2014-10-221-4/+5
| | | | PHPBB3-13205
* [ticket/13205] Add a mark all messages read link to PM foldersNils Adermann2014-10-221-0/+17
| | | | PHPBB3-13205
* [ticket/13027] round to floorJakub Senko2014-09-091-1/+1
| | | | PHPBB3-13027
* [ticket/12990] Use the full services name for the notification's typesTristan Darricau2014-08-161-7/+7
| | | | PHPBB3-12990
* Merge branch 'ticket/11480' into ticket/11480-ascraeusTristan Darricau2014-07-301-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | * ticket/11480: [ticket/11480] Move the test into get_folder() [ticket/11480] Fix the double spaces in phpbb_functional_test_case [ticket/11480] Fix typos [ticket/11480] Add functionnal test [ticket/11480] PM : "Unknown folder" returned when inbox folder is full Conflicts: tests/test_framework/phpbb_functional_test_case.php
| * [ticket/11480] Move the test into get_folder()Tristan Darricau2014-07-301-1/+1
| | | | | | | | PHPBB3-11480