Marc Alexander
eb7019d54a
[prep-release-3.2.10] Add migration for 3.2.10-RC1
2020-06-01 13:14:06 +02:00
Marc Alexander
c66dd87f68
Merge pull request #5986 from 3D-I/ticket/16487
...
[ticket/16487] Fix URL for fontawesome 3.2.0 migration
2020-05-27 21:37:16 +02:00
3D-I
bb32ec38da
[ticket/16487] Fix URL for fontawesome 3.2.0 migration
...
PHPBB3-16487
2020-05-26 21:54:11 +02:00
Marc Alexander
4a4f62f29e
Merge pull request #5985 from 3D-I/ticket/16486
...
[ticket/16486] Fix migration 3.2.0-a1
2020-05-24 14:15:37 +02:00
3D-I
d69049d6be
[ticket/16487] Fix URL for fontawesome 3.2.0 migration
...
PHPBB3-16487
2020-05-16 15:13:16 +02:00
3D-I
2dd571bc5d
[ticket/16487] Fix URL for fontawesome 3.2.0 migration
...
revert to 4.4.0 version
PHPBB3-16487
2020-05-16 15:05:07 +02:00
3D-I
73741e547b
[ticket/16487] Fix URL for fontawesome 3.2.0 migration
...
PHPBB3-16487
2020-05-16 14:39:55 +02:00
3D-I
362541c2b1
[ticket/16486] Fix migration 3.2.0-a1
...
PHPBB3-16486
2020-05-16 14:10:10 +02:00
3D-I
7df35e8131
[ticket/16480] Fix Emoji in report post
...
PHPBB3-16480
2020-05-14 20:58:41 +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
mrgoldy
c8e92608fd
[ticket/13867] Correct constructor comment for db tools
...
PHPBB3-13867
2020-05-04 22:05:07 +02:00
mrgoldy
ed974c2c84
[ticket/16467] Fix PostgreSQL connection password
...
PHPBB3-16467
2020-05-04 11:49:45 +02:00
Marc Alexander
e30d10288d
Merge pull request #5918 from dark-1/ticket/16411
...
[ticket/16411] Add vars to notification core events
2020-04-29 22:21:05 +02:00
Marc Alexander
a12b70468f
Merge pull request #5931 from ansavin/ticket/16367
...
[ticket/16367] Add charset to Content-Type response header in feed controller
2020-04-23 21:58:18 +02:00
ansavin
8c8655863e
[ticket/16367] Add charset to Content-Type response header in feed controller
...
PHPBB3-16367
2020-04-23 22:00:57 +03:00
Marc Alexander
6f99cf0fd5
Merge pull request #5959 from kasimi/ticket/16456
...
[ticket/16456] Add event core.text_formatter_s9e_get_errors
2020-04-22 22:00:08 +02:00
kasimi
3de74e58b7
[ticket/16456] Add event core.text_formatter_s9e_get_errors
...
PHPBB3-16456
2020-04-22 13:26:31 +02:00
Dark❶
e0a7676c3f
[ticket/16411] Add vars to notification core events
...
PHPBB3-16411
2020-04-22 10:32:29 +05:30
Marc Alexander
66990474b9
Merge pull request #5937 from mrgoldy/ticket/16422
...
[ticket/16422] Strip BOM characters
2020-04-21 21:47:07 +02:00
Marc Alexander
bf36dd2036
Merge pull request #5935 from 3D-I/ticket/16428
...
[ticket/16428] Fix invalid scheme name (empty value)
2020-04-21 21:35:49 +02:00
Marc Alexander
29450d8893
Merge pull request #5930 from 3D-I/ticket/16423
...
[ticket/16423] Add Aria Engine to list of Fulltext Supported
2020-04-21 20:07:47 +02:00
Marc Alexander
e10331f988
Merge pull request #5942 from mrgoldy/ticket/16432
...
[ticket/16432] Display APCu Cache notice when handling extensions through CLI
2020-04-21 17:19:47 +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
mrgoldy
275ef147f6
[ticket/16422] Strip BOM characters
...
PHPBB3-16422
2020-04-08 22:19:40 +02:00
3D-I
33666c7817
[ticket/16428] Fix invalid scheme name (empty value)
...
PHPBB3-16428
2020-04-06 22:11:01 +02:00
3D-I
c190451098
[ticket/16423] Add Aria Engine to list of Fulltext Supported
...
PHPBB3-16423
2020-04-02 23:47:01 +02:00
3D-I
551a018613
[ticket/16423] Add Aria Engine to list of Fulltext Supported
...
PHPBB3-16423
2020-04-02 23:18:26 +02:00
mrgoldy
9080a0e778
[ticket/13867] Force data type in profile fields manager
...
PHPBB3-13867
2020-03-24 00:28:00 +01:00
mrgoldy
d26e0423f7
[ticket/13867] Amend profile fields manager constructor
...
PHPBB3-13867
2020-03-23 22:47:18 +01:00
mrgoldy
84cd7e496b
[ticket/13867] Amend profile fields manager
...
PHPBB3-13867
2020-03-23 22:40:04 +01:00
Tristan Darricau
b3f3886cd9
[ticket/13867] Add tests
...
PHPBB3-13867
2020-03-23 22:37:51 +01:00
javiexin
b1e1ee7d55
[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.
Execute requested changes: more meaningful var names, json_encode, empty.
Execute requested changes: separate a utilit list function, use
sql_in_set, use single quotes ('). Remove code approved in a different PR.
PHPBB3-13867
2020-03-23 22:37:50 +01:00
javiexin
b60322f729
[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.
Execute requested changes: more meaningful var names, json_encode, empty.
PHPBB3-13867
2020-03-23 22:37:29 +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
rxu
5842c912a9
[ticket/13426] Improve user timezone initialization
...
PHPBB3-13426
2020-03-19 00:17:26 +07:00
Marc Alexander
0788754a5f
Merge pull request #5911 from dark-1/ticket/16406
...
[ticket/16406] Fix Core Event of notification
2020-03-17 17:48:32 +01:00
Dark❶
b23c4dacb9
[ticket/16406] Fix Core Event of notification
...
PHPBB3-16406
2020-03-15 21:10:28 +05:30
3D-I
e5f88a1462
[ticket/13914] Cast to INT mixed style ID data in user setup
...
PHPBB3-13914
2020-03-15 04:43:31 +01:00
Marc Alexander
3c07c8c2a0
Merge pull request #5862 from dark-1/ticket/16370
...
[ticket/16370] Add core events for Notification
2020-03-07 14:15:32 +01:00
Dark❶
70513f8da4
[ticket/16370] Add core events for Notification
...
PHPBB3-16370
2020-03-04 01:41:37 +05:30
mrgoldy
f6fae7b536
[ticket/16289] Correct ampersand in report notification email
...
PHPBB3-16289
2020-03-01 11:21:34 +01:00
Dark❶
255c79a8f7
[ticket/16370] Add core events for Notification
...
PHPBB3-16370
2020-02-28 00:19:10 +05:30
Dark❶
5f4522e55b
[ticket/16370] Add core events for Notification
...
PHPBB3-16370
2020-02-21 12:22:26 +05:30
Marc Alexander
5ce1e1e7df
Merge pull request #5849 from rubencm/ticket/16351
...
[ticket/16351] Use CHMOD constants from filesystem_interface
2020-02-15 16:45:57 +01:00
Marc Alexander
7735f22562
Merge pull request #5853 from mrgoldy/ticket/16060
...
[ticket/16060] Correct auto prune column for cron job
2020-02-14 07:31:19 +01:00
Marc Alexander
b6a320503e
Merge pull request #5850 from rubencm/ticket/16352
...
[ticket/16352] Deprecate a few functions/classes
2020-02-14 07:11:12 +01:00
Marc Alexander
e1ee0dfec1
Merge pull request #5840 from Kidounet/ticket/15395
...
[ticket/15395] change GIN tsvector indexes in Postgres Fulltext Search
2020-02-14 07:04:53 +01:00
Marc Alexander
8fcb5dcc4d
Merge pull request #5815 from KYPREO/ticket/16234
...
[ticket/16234] Fix & enhance Sphinx search backend functionality
2020-02-14 07:00:48 +01:00
KYPREO
852959cf2b
[ticket/16234] Fix & enhance Sphinx search backend functionality
...
PHPBB3-16234
PHPBB3-16233
PHPBB3-15367
PHPBB3-13958
2020-02-12 16:42:53 +11:00