1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-11 00:40:56 +02:00
Commit Graph

875 Commits

Author SHA1 Message Date
8cea785f36 [ticket/12683] Improve exception handling
PHPBB3-12683
2022-12-11 17:16:44 +01:00
ac227a9ea6 [ticket/12683] Add basic tests
PHPBB3-12683
2022-12-11 17:16:44 +01:00
d55f1e04eb [ticket/12683] phpdoc and spaces
PHPBB3-12683
2022-12-11 17:16:44 +01:00
f4977853be [ticket/12683] Pass tables via parameter and small fix
PHPBB3-12683
2022-12-11 17:16:44 +01:00
565c806eda [ticket/12683] Move state related code to helper class
PHPBB3-12683
2022-12-11 17:16:44 +01:00
f1a2558cfe [ticket/16738] Multiple changes
Add post helper to get last post id
Launch exception if an action is in progress
Launch an exception if the action is already done
When listing search backend in cli, if the active
backend is not indexed an error is launched
Add state to commands
Fix small error in sphinx search backend

PHPBB3-16738
2022-12-11 17:16:44 +01:00
ce54ee5e6f [ticket/12683] Add CLI command to generate the search index
PHPBB3-12683
2022-12-11 17:16:44 +01:00
f48ff960f1 Merge pull request from rubencm/ticket/17062
[ticket/17062] Call search service using dependency injection
2022-11-30 19:39:13 +01:00
6fc476c692 [ticket/17062] Call search service using dependency injection
PHPBB3-17062
2022-11-27 11:55:49 +01:00
81b221df9d Merge pull request from lionel-rowe/ticket/16977
[ticket/16977] Fix cron-job img tag layout and accessibility
2022-04-10 21:21:47 +02:00
87c1e631ef [ticket/16977] Move HTML rendering logic to template
PHPBB3-16977
2022-04-03 17:11:09 +01:00
659f37c1c4 Merge branch 'ticket/16891' into ticket/16891-master 2022-01-31 21:48:53 +01:00
e1b73e4fba Merge branch '3.3.x' 2022-01-31 20:55:15 +01:00
9dc25510a1 [ticket/16891] Add new method for deferring cache purge to end of request
PHPBB3-16891
2022-01-31 20:34:23 +01:00
0fe95a032b [ticket/16956] Remove router cache flag
The deferred purge will be used in the future instead. The cache flag in the
router only causes additional issues by trying to rebuild the routing
mid-request

PHPBB3-16956
2022-01-31 16:52:19 +01:00
e92b5caf66 Merge pull request from CHItA/ticket/16741
[ticket/16741] Database tools to use Doctrine
2022-01-17 20:08:50 +01:00
a0584b8677 [ticket/16741] Code review fixes
PHPBB3-16741
2021-12-05 11:19:05 +01:00
b8d555f56a [ticket/16741] Specific DBs fixes
MSSQL:
- Fix bool type
- Fix comparator
- Drop Default constraint before deleting column
- Rename Default constraint to use phpBB's names
- Re-create the indices when changing the type of one column
- Uses varchar instead of varbinary

PostgreSQL:
- Creates auto increment sequences by hand instead of using serial
  in order to use phpBB's names
- Drop constraint on unique / primary indices

Oracle:
- Rename indices to use phpBB's names
- Fix string not null behaviour
- Fix broken regex in Oracle driver
- Handle to long indices on Oracle
- Rename auto_increment trigger and sequence
- Automatically lowercase keys in assoc results

PHPBB3-16741
2021-11-11 04:55:28 +01:00
6ce708539b [ticket/16741] General fixes
PHPBB3-16741
2021-11-09 02:48:34 +01:00
771dbc7cda Merge branch '3.3.x' 2021-11-01 16:57:35 +01:00
98134abe20 [ticket/16741] Database tools to use Doctrine
PHPBB3-16741
2021-10-31 01:58:53 +02:00
8246023e0f Merge pull request from Nicofuma/ticket/16891
[ticket/16891] Do not change an extension status in the midle of a request
2021-10-30 21:57:15 +02:00
b28b94b1f1 [ticket/16891] Do not change an extension status in the middle of a request
When enabling an extension, it should be considered as not being enabled for
the entire request as if the "enabled" flag is switch during the request, the
extension will stay not loaded (same when disabling an extension).

Example when it can be an issue today : if the router is called for the first
time after enabling the extension and if the extension uses a custom route
loader (like phpbb/pages) then the router will fail because the custom route
will be found but the custom loader will not be loaded and available.

PHPBB3-16891
2021-10-30 04:25:31 +02:00
cac8c78d33 Merge branch 'ticket/16898' into ticket/16898-master 2021-10-26 20:24:35 +02:00
1d4fbd240e [ticket/16898] Do not restrict the debug error handler to the dev env
PHPBB3-16898
2021-10-26 20:23:28 +02:00
ed1566d217 [ticket/12631] Remove invalid parameter for create_schema_file task
PHPBB3-12631
2021-10-10 11:52:16 +02:00
d31e986815 [ticket/12631] Rename finder.not_use_cache to finder.cache
PHPBB3-12631
2021-10-10 10:13:37 +02:00
9308764fae [ticket/12631] Add finder.not_use_cache
PHPBB3-12631
2021-10-10 10:10:37 +02:00
fe1b9d5384 [ticket/16207] Add session.force_sid parameter to allow fixing settings
PHPBB3-16207
2021-07-17 22:32:03 +02:00
37ebf41308 Merge pull request from rubencm/ticket/14285
[ticket/14285] Move downloads to controller
2021-05-28 07:17:15 +02:00
8518b9864e [ticket/14285] Move response variable and small improvements
PHPBB3-14285
2021-05-27 07:43:24 +02:00
1e624bef15 [ticket/14285] Add prefix in routing
PHPBB3-14285
2021-05-25 07:28:05 +02:00
8f21a7365d [ticket/13713] Rework batch size handling
PHPBB3-13713
2021-05-14 21:52:09 +02:00
e3cee76077 [ticket/13713] Do not use phpbb prefix in configuration
PHPBB3-13713
2021-05-14 21:52:04 +02:00
27b37f3881 [ticket/13713] Introduce mention notifications for groups
PHPBB3-13713
2021-05-14 21:52:03 +02:00
368090b7e6 [ticket/13713] Use config limit for fetching users
PHPBB3-13713
2021-05-14 21:51:57 +02:00
a21c115bf3 [ticket/13713] Create properly named base services for sources
PHPBB3-13713
2021-05-14 21:51:54 +02:00
52fac451a3 [ticket/13713] Create abstract parent service for user source
PHPBB3-13713
2021-05-14 21:51:53 +02:00
52c2e11fdd [ticket/13713] Add two new sources: member and team
PHPBB3-13713
2021-05-14 21:51:53 +02:00
c70ac7eb62 [ticket/13713] Introduce notifications for mentions
PHPBB3-13713
2021-05-14 21:51:53 +02:00
4b31a29c2c [ticket/13713] Implement colour handling
PHPBB3-13713
2021-05-14 21:51:51 +02:00
f775c1e79d [ticket/13713] Implement ranks
PHPBB3-13713
2021-05-14 21:51:51 +02:00
a176be4c1d [ticket/13713] Implement avatars
PHPBB3-13713
2021-05-14 21:51:50 +02:00
eec7703d3b [ticket/13713] Fix case for phpBB directory
PHPBB3-13713
2021-05-14 21:51:50 +02:00
6c42563b4d [ticket/13713] Add mention BBCode
PHPBB3-13713
2021-05-14 21:51:50 +02:00
f757e65559 [ticket/13713] Start working on User Mentions
PHPBB3-13713
2021-05-14 21:51:48 +02:00
e543874d08 [ticket/16764] Remove unused files
PHPBB3-16764
2021-04-24 15:24:59 +02:00
cc8b4ef619 [ticket/16764] Remove remote avatar functionality
PHPBB3-16764
2021-04-23 22:26:07 +02:00
2d42b2a6c2 Merge pull request from gijsmartens/ticket/15233
[ticket/15233] Standardize avatar output variables
2021-04-08 22:03:37 +02:00
6ae68baa2e [ticket/15540] Code changes
PHPBB3-15540
2021-03-23 22:23:10 +01:00