rubencm
c375f2c9e5
[ticket/14285] Use route service for download routes
...
PHPBB3-14285
2021-03-21 23:12:31 +01:00
rubencm
6f731f0a3e
[ticket/14285] Apply suggestions
...
PHPBB3-14285
2021-03-21 19:16:30 +01:00
Rubén Calvo
dc1d3683a8
[ticket/14285] Update controllers
...
PHPBB3-14285
2021-03-21 19:16:29 +01:00
Rubén Calvo
5707d98682
[ticket/14285] Fix undefined property
...
PHPBB3-14285
2021-03-21 19:16:29 +01:00
Rubén Calvo
2f043cdb61
[ticket/14285] Move functions from functions_download to controller
...
PHPBB3-14285
2021-03-21 19:16:26 +01:00
Rubén Calvo
dd06933324
[ticket/14285] Move downloads to controller
...
PHPBB3-14285
2021-03-21 19:12:39 +01:00
rxu
302632d240
[ticket/16649] Add compiler pass to make all services public
...
This also handles BC for phpBB extensions
PHPBB3-16639
2021-02-19 21:18:40 +07:00
rxu
19b12bf6ee
[ticket/16649] Upgrade to Symfony 5
...
PHPBB3-16649
2021-02-19 21:10:54 +07:00
Marc Alexander
3d3fb9faec
Merge branch '3.3.x'
2021-01-03 17:43:21 +01:00
JoshyPHP
be4afc49ff
[ticket/16645] Simplified text_reparser.poll_option
...
PHPBB3-16645
2021-01-01 22:21:00 +01:00
Marc Alexander
4eaa356679
Merge branch '3.3.x'
2020-09-19 11:28:31 +02:00
Marc Alexander
9c5f338d3c
Merge pull request #6037 from kasimi/ticket/16565
...
[ticket/16565] Lazy-load cron.task_collection
2020-09-19 11:12:41 +02:00
Marc Alexander
3d36211101
Merge branch '3.3.x'
2020-09-10 12:43:45 +02:00
rxu
aa76f6b9f2
[ticket/16544] Use forum_notify.txt for forum subscription email notifications
...
PHPBB3-16544
2020-09-02 22:11:51 +07:00
rubencm
92c31dd454
[ticket/12630] Use di to inject parameter
...
PHPBB3-12630
2020-08-30 10:47:28 +00:00
rubencm
116eb64755
[ticket/15765] Inject parameter
...
PHPBB3-15765
2020-08-30 10:29:59 +02:00
Marc Alexander
e61dcc9590
Merge branch '3.3.x'
2020-08-23 16:49:44 +02:00
rubencm
4156204419
[ticket/16346] More fixes
...
PHPBB3-16346
2020-08-14 08:29:14 +00:00
rubencm
774c609c4a
[ticket/16345] Small improvements
...
PHPBB3-16346
2020-08-14 08:29:06 +00:00
ansavin
b3199265a2
[ticket/16366] Make viewtopic lang vars available in feed pages
...
We call add_lang('viewtopic') in feed controller and configure_user(...)
in generate_content() in order to make viewtopic language constants
avaliable for message parser when it is called from feed controller
PHPBB3-16366
2020-08-13 16:46:23 +02:00
kasimi
76f2305b84
[ticket/16565] Inject service container
...
PHPBB3-16565
2020-08-12 13:03:23 +02:00
Marc Alexander
9368d2ea8a
Merge branch '3.3.x'
2020-05-14 17:44:31 +02:00
Marc Alexander
c5d83ef715
Merge branch '3.2.x' into 3.3.x
2020-05-14 17:44:22 +02:00
Marc Alexander
1c3585f575
Merge pull request #5920 from mrgoldy/ticket/13867
...
[ticket/13867] Manage new profile field types
2020-05-14 17:44:06 +02:00
Marc Alexander
74b2f2de9c
Merge branch '3.3.x'
2020-05-01 16:19:57 +02:00
Marc Alexander
008e313652
Merge pull request #5909 from marc1706/ticket/14754
...
[ticket/14754] Only one email notification per topic
2020-05-01 16:19:36 +02:00
Marc Alexander
e59d514ed3
Merge branch '3.3.x'
2020-04-29 21:52:01 +02:00
Marc Alexander
a43cdbac54
Merge pull request #5902 from mrgoldy/ticket/15937
...
[ticket/15937] Google reCAPTCHA v3 Plugin
2020-04-29 21:51:52 +02:00
Marc Alexander
066d14ab3c
Merge branch '3.3.x'
2020-04-21 21:04:50 +02:00
Marc Alexander
95080106e0
Merge pull request #5923 from AlfredoRamos/ticket/16315
...
[ticket/16315] Remove Google+ profile field
2020-04-21 20:50:01 +02:00
Marc Alexander
d87becfa8a
Merge branch '3.3.x'
2020-04-21 17:20:18 +02:00
Marc Alexander
e979194a0e
Merge branch '3.2.x' into 3.3.x
2020-04-21 17:20:08 +02:00
mrgoldy
3e128d06f4
[ticket/16432] Display APCu Cache notice when handling extensions through CLI
...
PHPBB3-16432
2020-04-12 00:46:00 +02:00
Alfredo Ramos
43e3b3e328
[ticket/16315] Remove Google+ profile field
...
PHPBB3-16315
2020-03-24 22:16:51 -06:00
mrgoldy
84cd7e496b
[ticket/13867] Amend profile fields manager
...
PHPBB3-13867
2020-03-23 22:40:04 +01:00
javiexin
b89539a70e
[ticket/13867] Enable/disable mechanism for new profile field types
...
Adds methods to enable, disable and purge profile field types to the
profilefields\manager class. These methods are to be called from
extensions that add new profile field types on the enable, disable
and purge methods of the ext class. If not done, any profile field
of a new type that is left after extension is disabled or removed will
break the forum in several places.
Remove dependency from container, add dependencies with specific classes.
Change try/catch by !isset.
PHPBB3-13867
2020-03-23 22:34:31 +01:00
javiexin
78ea308608
[ticket/13867] Enable/disable mechanism for new profile field types
...
Adds methods to enable, disable and purge profile field types to the
profilefields\manager class. These methods are to be called from
extensions that add new profile field types on the enable, disable
and purge methods of the ext class. If not done, any profile field
of a new type that is left after extension is disabled or removed will
break the forum in several places.
PHPBB3-13867
2020-03-23 22:34:31 +01:00
Marc Alexander
9f4a240f91
[ticket/14754] Rename email notifications table to fit better
...
PHPBB3-14754
2020-03-15 15:08:25 +01:00
Jakub Senko
f3664b07d2
[ticket/14754] Use dedicated table to stop receiving notifications
...
PHPBB3-14754
2020-03-15 11:52:16 +01:00
Jakub Senko
a3e0117ff0
[ticket/14754] Only one email notification per topic
...
PHPBB3-14754
2020-03-15 11:52:16 +01:00
mrgoldy
0c63f03db4
[ticket/15937] Google reCAPTCHA v3 Plugin
...
PHPBB3-15937
2020-03-14 14:42:08 +01:00
Marc Alexander
e95778df58
Merge branch '3.3.x'
2020-03-01 21:41:03 +01:00
mrgoldy
2451c0a815
[ticket/16382] Update Twig_Extension_Debug
...
PHPBB3-16382
2020-02-27 16:28:49 +01:00
Marc Alexander
33c50f236a
Merge branch '3.3.x'
2020-02-06 17:36:49 +01:00
Marc Alexander
d0d1fd189b
Merge pull request #5831 from marc1706/ticket/16314
...
[ticket/16314] Improve handling of page_footer output for controllers
2020-02-06 17:19:33 +01:00
Marc Alexander
c221858fab
Merge branch '3.3.x'
2020-01-30 21:38:35 +01:00
JoshyPHP
2dbcad7840
[ticket/16342] Increase default hashing costs for Argon2 passwords
...
PHPBB3-16342
2020-01-28 01:42:39 +01:00
Marc Alexander
8bdad7d73e
[ticket/16314] Reorder controller helper constructor parameters
...
PHPBB3-16314
2020-01-20 17:28:37 +01:00
Marc Alexander
2bfea20007
[ticket/16314] Create correct adm relative path for controller helper
...
PHPBB3-16314
2020-01-19 21:43:07 +01:00
Marc Alexander
843e3ae849
[ticket/16314] Improve handling of page_footer output for controllers
...
Moved the common template output to controller helper and added
garbage_collection handling to kernel_terminate_subscriber.
PHPBB3-16314
2020-01-19 16:03:32 +01:00