oxcom
776a7302a4
[ticket/16146] fix event name in comment
...
PHPBB3-16146
2019-09-03 08:15:00 +02:00
oxcom
a1e8282e67
[ticket/16146] New core event: after move forum
...
PHPBB3-16146
2019-09-02 14:31:07 +02:00
Marc Alexander
9c15594fe4
[3.2.x] Update version numbers to 3.2.9-dev
2019-08-17 21:44:17 +02:00
Marc Alexander
f3d89e0e08
[prep-release-3.2.8] Update version numbers to 3.2.8-RC1
2019-08-17 11:18:05 +02:00
Marc Alexander
9a992a4866
Merge pull request #5656 from 3D-I/ticket/16019
...
[ticket/16019] Deny prosilver's uninstallation
2019-08-17 11:02:08 +02:00
Marc Alexander
93a472f08e
Merge pull request #5654 from 3D-I/ticket/16080
...
[ticket/16080] ACP - Provide meaningful error msg for deleted installed style
2019-08-15 10:47:29 +02:00
3D-I
78f0ec8ea7
[ticket/16080] Remove sprintf()
...
PHPBB3-16080
2019-08-13 20:55:10 +02:00
3D-I
463807fcf0
[ticket/16019] Code's enhancement
...
PHPBB3-16019
2019-08-13 06:39:46 +02:00
3D-I
aec25f24ae
[ticket/16019] Get rid of the uninstall link
...
PHPBB3-16019
2019-08-13 06:08:25 +02:00
3D-I
6cc16af75f
[ticket/16019] Amend code for the better
...
PHPBB3-16019
2019-08-13 05:32:34 +02:00
3D-I
af84fb71e0
[ticket/16019] Move code to before of confirm box is submitted
...
PHPBB3-16019
2019-08-13 05:01:09 +02:00
3D-I
3fbdb2f345
[ticket/16019] Deny prosilver's uninstallation
...
PHPBB3-16019
2019-08-13 04:31:07 +02:00
Marc Alexander
89e95941b1
Merge pull request #5650 from 3D-I/ticket/16127
...
[ticket/16127] Add UI for email $max_chunk_size
2019-08-12 21:40:09 +02:00
3D-I
37de0f96d1
[ticket/16080] Use placeholder
...
PHPBB3-16080
2019-08-12 21:15:54 +02:00
3D-I
964c212f03
[ticket/16080] Provide a meaningful error message for deleted installed style
...
PHPBB3-16080
2019-08-12 01:20:33 +02:00
3D-I
1de4a65e58
[ticket/16080] Change location as it should have been.
...
PHPBB3-16080
2019-08-12 00:49:06 +02:00
3D-I
ebd958c728
[ticket/16080] Provide a back-trace for deleted installed style
...
That's a very edge case, I am using the same approach done in user.php
PHPBB3-16080
2019-08-11 23:21:48 +02:00
Marc Alexander
38e5913338
Merge pull request #5637 from EA117/ticket/16054
...
[ticket/16054] Restore ability to login from any template.
2019-08-11 20:02:11 +02:00
Marc Alexander
48522fd938
Merge pull request #5643 from dark-1/ticket/16113
...
[ticket/16113] Add core.mcp_topic_modify_sql_ary
2019-08-11 17:36:19 +02:00
Marc Alexander
0854c7226d
Merge pull request #5651 from 3D-I/ticket/15897
...
[ticket/15897] Fix Emojis' SQL Error in Attachment Comment
2019-08-11 17:15:46 +02:00
Marc Alexander
5fe3719f13
Merge pull request #5634 from dark-1/ticket/16111
...
[ticket/16111] Add core.message_history_modify_sql_ary
2019-08-11 17:10:32 +02:00
3D-I
d18e547332
[ticket/15897] Fix Emojis' SQL Error in Attachment Comment
...
PHPBB3-15897
2019-08-10 21:02:45 +02:00
3D-I
f21c5f9fef
[ticket/16127] Amend input validation PHP side
...
PHPBB3-16127
2019-08-08 21:38:42 +02:00
3D-I
b6e5a5fca8
[ticket/16127] Minimum 1 and rephrasing.
...
PHPBB3-16127
2019-08-08 01:33:16 +02:00
3D-I
82a04debca
[ticket/16127] Add UI for email $max_chunk_size
...
PHPBB3-16127
2019-08-07 22:28:40 +02:00
Derky
6ada02b060
Merge pull request #5628 from marc1706/ticket/16101
...
[ticket/16101] Add Referrer-Policy header to phpBB's headers
2019-07-30 07:34:13 +02:00
Marc Alexander
51205febe3
Merge pull request #5635 from EA117/ticket/16066
...
[ticket/16066] Fix FORM_INVALID always returned for banned user.
2019-07-29 21:38:13 +02:00
Dark❶
cd75b712d4
[ticket/16113] Add core.mcp_topic_modify_sql_ary
...
PHPBB3-16113
2019-07-29 03:13:29 +05:30
EA117
792882ef63
[ticket/16054] Restore ability to login from any template.
...
Moving the login form's add_form_key() work into page_header(), so that the
template variables required for presenting a login form are again available
to any template that chooses to consume them.
PHPBB3-16054
2019-07-28 15:15:39 -05:00
EA117
636fc7fad7
[ticket/16066] Fix FORM_INVALID always returned for banned user.
...
After the introduction of add_form_key() and check_form_key() calls to
login_box() in phpBB 3.2.6 and later, if a banned user attempts to login,
they receive a "The submitted form was invalid. Try submitting again."
Instead of the message indicating that they are banned, and why.
This is happening because check_ban() actually calls into login_box()
recursively, but after the $user->session_id has been switched to a new
session ID for the logging-on user. Therefore, now that check_form_key()
has been introduced to login_box(), it is impossible for check_form_key()
to succeed during this recursive call.
Fix is to make login_box()'s use of check_form_key() conditional on whether
IN_CHECK_BAN is defined, so that the recursive call does not attempt to
re-validate the form_key again. Note the form_key has already been
successfully verified by the original call into login_box(), prior to calling
into check_ban() and attempting to recursively call login_box(). So the
protection of why check_form_key() was added is still intact with this change.
PHPBB3-16066
2019-07-28 12:25:54 -05:00
Marc Alexander
f567b2bb69
Merge pull request #5459 from mrgoldy/ticket/15886
...
[ticket/15886] Group helper functions
2019-07-28 15:31:09 +02:00
Dark❶
8ac4f955ca
[ticket/16111] Add core.message_history_modify_sql_ary
...
PHPBB3-16111
2019-07-28 18:36:37 +05:30
Dark❶
01d0457f67
[ticket/16111] Add core.message_history_modify_sql_ary
...
PHPBB3-16111
2019-07-28 18:06:16 +05:30
Dark❶
5cd0aad3c6
[ticket/16111] Add core.message_history_modify_sql_ary
...
PHPBB3-16111
2019-07-28 17:51:17 +05:30
Marc Alexander
ae62bc4642
Merge pull request #5575 from rubencm/ticket/14459
...
[ticket/14459] Check language input for group and fix template logic
2019-07-28 10:38:33 +02:00
rubencm
c281604d0b
[ticket/14459] Use language property
...
PHPBB3-14459
2019-07-27 23:52:01 +00:00
rubencm
acb5794d50
[ticket/14459] Rename variable
...
PHPBB3-14459
2019-07-27 15:15:58 +00:00
Marc Alexander
65ff149fc9
Merge pull request #5601 from senky/ticket/16013
...
[ticket/16013] Allow admins to use disallowed username
2019-07-27 16:20:53 +02:00
Marc Alexander
d06e9745c2
Merge pull request #5631 from kasimi/ticket/16106
...
[ticket/16106] Add core.mcp_main_before
2019-07-27 14:57:30 +02:00
Marc Alexander
1b4f82cd1d
Merge pull request #5630 from 3D-I/ticket/16103
...
[ticket/16103] Add core.pm_modify_message_subject
2019-07-27 14:37:58 +02:00
Marc Alexander
b59e101d8d
Merge pull request #5610 from espipj/ticket/16070
...
[ticket/16070] Remove support for WebSTAR and Xitami
2019-07-23 21:18:22 +02:00
kasimi
a12d93b8b8
[ticket/16106] Add core.mcp_main_before
...
PHPBB3-16106
2019-07-23 21:13:08 +02:00
Marc Alexander
a4ad94ef5c
Merge pull request #5624 from senky/ticket/16089
...
[ticket/16089] Add core.confirm_box_ajax_before
2019-07-23 21:08:50 +02:00
Marc Alexander
d738397e6f
Merge pull request #5606 from senky/ticket/15976
...
[ticket/15976] Reset user_passchg only if user changed password
2019-07-22 21:31:53 +02:00
Marc Alexander
6559bb9511
Merge pull request #5572 from dark-1/ticket/16023
...
[ticket/16023] Add core.message_history_modify_template_vars
2019-07-22 20:55:00 +02:00
Jakub Senko
90dcd1a0f4
[ticket/16089] Add core.confirm_box_ajax_before
...
PHPBB3-16089
2019-07-22 08:19:32 +02:00
Marc Alexander
17c6cd3676
Merge pull request #5562 from senky/ticket/15961
...
[ticket/15961] Use newer TLS in SMTP
2019-07-21 21:12:00 +02:00
3D-I
2f8b9fb549
[ticket/16103] Add core.pm_modify_message_subject
...
PHPBB3-16103
2019-07-20 20:35:25 +02:00
Marc Alexander
30f8e5d638
[ticket/16101] Add Referrer-Policy header to phpBB's headers
...
PHPBB3-16101
2019-07-20 09:43:24 +02:00
rubencm
6787f6706e
[ticket/14459] Fix
...
PHPBB3-14459
2019-06-25 16:37:16 +00:00