e9e305ee9f
[prep-release-3.3.13] Add migration for 3.3.13-RC1
2024-08-02 19:20:35 +02:00
b7ffee0945
Merge pull request #6698 from marc1706/ticket/17375
...
[ticket/17375] Ensure user last visit does not get updated for active sessions in session gc
2024-08-01 22:18:23 +02:00
56c1b9b5bd
Merge pull request #6662 from rxu/ticket/17358
...
[ticket/17358] Properly handle Redis cache expiration time - 3.3.x
2024-08-01 20:24:23 +02:00
18c00a902f
[ticket/17375] User last active should be updated to current time
...
PHPBB-17375
2024-07-31 21:25:33 +02:00
8497104bdb
[ticket/17375] Ensure session garbage collection only happens for expired ones
...
PHPBB-17375
2024-07-31 21:24:45 +02:00
935c1a3ea2
Merge pull request #6680 from marc1706/ticket/17366
...
[ticket/17366] Resolve issues with form submissions and recaptcha
2024-07-28 20:47:14 +02:00
6eb49d0907
Merge pull request #6681 from marc1706/ticket/16213
...
[ticket/16213] Add .htaccess for phpbb and vendor folders
2024-07-28 20:44:56 +02:00
cf47bed67e
Merge pull request #6689 from marc1706/ticket/17370
...
[ticket/17370] Move delete cookies functionality to controller
2024-07-28 20:35:42 +02:00
45d64a1627
Merge pull request #6660 from marc1706/ticket/17353
...
[ticket/17353] Get gravatar img src and fix incorrect treatment of height
2024-07-16 21:03:44 +02:00
294c517256
[ticket/17370] Add controller for deleting cookies
...
PHPBB-17370
2024-07-14 20:42:03 +02:00
99c97b951f
Merge pull request #6642 from rxu/ticket/17338
...
[ticket/17338] Prefer user_last_active to display user last activity info
2024-07-13 19:42:48 +02:00
30144052da
[ticket/17365] Prevent keyword limit being bypassed with the use of +, - and |
...
Provided `$countable_keywords` wherein the existing `$keywords` value is
modified so that any `-`, `+` and `|` characters without preceding spaces
is replaced with the same but with a space in front of each.
These spaces allow the string to be more accurately split when used instead
of $keywords inside the $num_keywords calculation.
This prevents the word limit being bypassed in search by the use of
operators without whitespace.
PHPBB-17365
2024-07-07 23:04:19 +01:00
8298095421
[ticket/16213] Add .htaccess for phpbb and vendor folders
...
PHPBB-16213
2024-07-07 15:22:23 +02:00
8639be4bd4
[ticket/17366] Remember confirm code if recaptcha v3 is solved
...
PHPBB-17366
2024-07-07 11:31:18 +02:00
6798c337f8
Merge pull request #6656 from danieltj27/ticket/17350
...
[ticket/17350] Add IP Address of user during install process
2024-07-05 21:45:16 +02:00
5013075af7
[ticket/17355] Change gravatar URL to new format
...
PHPBB-17355
2024-07-03 21:36:51 +02:00
40881b537e
[ticket/17353] Return image src for gravatar image
...
PHPBB-17353
2024-07-03 21:36:51 +02:00
efece4136b
[ticket/17353] Add test for gravatar driver and fix request var issue
...
PHPBB-17353
2024-07-03 21:36:51 +02:00
d7477760d6
[ticket/17362] Declare property to avoid PHP 8.2 deprecation notice
...
PHPBB-17362
2024-07-01 13:48:59 +02:00
294b3ff922
Merge pull request #6651 from marc1706/ticket/17347
...
[ticket/17347] Add console command to delete users by user IDs
2024-06-30 17:20:35 +02:00
5a9c01716f
[ticket/17358] Properly handle Redis cache expiration time
...
PHPBB-17358
2024-06-30 12:45:14 +07:00
e5d2e82ef5
[ticket/17351] Correctly handle md5 passwords rehashing
...
PHPBB-17351
2024-06-28 11:36:14 +07:00
8eacbf8305
[ticket/17350] Add IP Address of user during install process
...
Adds the IP address of the user completing the installation process
while extensions are being installed or updated. Prior to this change
the IP address field was being left blank however other logs created
during the install process for other actions does record the users IP.
PHPBB-17350
2024-06-25 16:24:58 +01:00
3647cf2cfe
Merge pull request #6637 from rxu/ticket/17337
...
[ticket/17337] Fix mysqli driver is missing transaction begin statement - 3.3.x
2024-06-24 20:35:00 +02:00
15960a7918
Merge pull request #6639 from marc1706/ticket/17301
...
[ticket/17301] Ensure reading invalid cache files is aborted
2024-06-22 11:56:21 +02:00
fa893f092b
[ticket/17347] Get rid of not needed code duplication
...
PHPBB-17347
2024-06-22 07:33:06 +02:00
7f9bcc2743
[ticket/17347] Change command to be called user:delete_id
...
PHPBB-17347
2024-06-21 21:12:38 +02:00
db40145fd5
[ticket/17347] Use progress bar and test bot deletion only
...
PHPBB-17347
2024-06-21 20:59:04 +02:00
8c77da9c30
[ticket/17347] Add special handling for deletion of bots
...
PHPBB-17347
2024-06-21 20:48:41 +02:00
09f0b417be
[ticket/17347] Fix issues noticed in tests
...
PHPBB-17347
2024-06-20 22:38:24 +02:00
8432e506c4
[ticket/17347] Add tests for delete ids
...
PHPBB-17347
2024-06-20 22:23:38 +02:00
77d1010081
[ticket/17347] Add console command to delete users by user IDs
...
PHPBB-17347
2024-06-20 21:17:48 +02:00
4003f54d0b
[ticket/17338] Do not update user_last_active to outdated session_time value
...
PHPBB-17338
2024-06-17 11:55:35 +07:00
e21a8e02cd
[ticket/17338] Update user_last_active on session removal and login keys reset
...
PHPBB-17338
2024-06-14 15:22:20 +07:00
db9874546b
[ticket/17338] Add user_last_active to session_gc()
...
PHPBB-17338
2024-06-14 11:03:02 +07:00
f98f2c5896
[ticket/17301] Ensure reading invalid cache files is aborted
...
PHPBB-17301
2024-06-11 20:12:01 +02:00
c2d91650bd
[ticket/17337] Fix mysqli driver is missing transaction begin statement
...
PHPBB-17337
2024-06-11 16:08:39 +07:00
ef4db99709
[ticket/17332] Fix permission migrator tool to work with copied permissions
...
PHPBB-17332
2024-06-05 00:22:04 +07:00
56d8a7e43f
[ticket/17327] Use class name from use statement
...
PHPBB3-17327
2024-05-31 22:30:05 +02:00
6cef48af2f
[prep-release-3.3.12] Add migration for 3.3.12
2024-05-30 11:00:23 +02:00
1fb7e6d2c8
[ticket/security/278] Always release cron lock, even invalid task is passed
...
SECURITY-278
2024-05-29 22:04:16 +02:00
1c1c981b17
[ticket/security/276] Centralise call for token expiration
...
SECURITY-276
2024-05-29 22:04:15 +02:00
f853f6523f
[ticket/security/276] Prevent sending activation emails multiple times per day
...
SECURITY-276
2024-05-29 22:04:15 +02:00
a63a1913fa
[ticket/security-276] Add migration for user_actkey expiration column
...
SECURITY-276
2024-05-29 22:04:15 +02:00
51da43f77f
[prep-release-3.3.12] Fix since version and undo md exporter change
2024-05-29 21:53:11 +02:00
9ea4aabe9a
[ticket/17324] Allow targeting events to prep-releases
...
PHPBB3-17324
2024-05-28 20:36:40 +02:00
ed0b5020a9
[ticket/17312] Use user_last_active instead of user_lastvisit where possible
...
PHPBB3-17312
2024-05-16 20:44:38 +02:00
a7a53de34d
[ticket/17312] Add migration for user_last_active column
...
PHPBB3-17312
2024-05-14 21:42:02 +02:00
d2295b82f1
[prep-release-3.3.12] Add migration for 3.3.12-RC1
2024-05-09 12:59:37 +02:00
eb12d385a0
Merge pull request #6549 from marc1706/ticket/15325
...
[ticket/15325] Do not show non-local permissions for local data
2024-05-08 17:22:15 +02:00