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
Marc Alexander
6440f97a4f
Merge pull request #5638 from marc1706/ticket/16112
...
[ticket/16112] Update composer dependencies for 3.2.x
2019-07-29 21:30:53 +02:00
Marc Alexander
0ffd0d1924
Merge pull request #5627 from senky/ticket/16097
...
[ticket/16097] Add core.viewtopic_gen_sort_selects_before
2019-07-29 20:48:23 +02:00
Jakub Senko
cd6a0026d5
[ticket/16097] Correctly classify sort_days as int
...
PHPBB3-16097
2019-07-29 08:22:19 +02:00
Marc Alexander
4084939620
[ticket/16112] Update composer dependencies for 3.2.x
...
PHPBB3-16112
2019-07-28 22:33:47 +02: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
b53f95e577
Merge pull request #5494 from mrgoldy/ticket/15885
...
[ticket/15885] Display group rank on memberlist_body
2019-07-28 17:55:25 +02: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
Marc Alexander
cf96967677
[ticket/15886] Fix minor code style issues
...
PHPBB3-15886
2019-07-28 12:21:46 +02:00
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
79bcb20ac5
Merge pull request #5626 from cpeel/ticket/16096
...
[ticket/16096] Use InnoDB fulltext limits for InnoDB tables
2019-07-27 16:18:37 +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
978d1976b0
Merge pull request #5629 from 3D-I/ticket/16102
...
[ticket/16102] Add core.posting_modify_post_subject
2019-07-27 14:30:30 +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
Nuno Lopes
d3c3dc24fe
[ticket/15982] fix warning with PHP >= 7.2 with Q&A captcha plugin
...
PHPBB3-15982
2019-07-22 22:16:21 +02:00
Marc Alexander
7c559b2912
Merge pull request #5609 from senky/ticket/15946
...
[ticket/15946] Add core.posting_modify_row_data
2019-07-22 21:40:02 +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
0e2c927551
Merge pull request #5625 from marc1706/ticket/16093
...
[ticket/16093] Do not display attach-row-tpl
2019-07-21 22:24:48 +02:00
Marc Alexander
091e195717
Merge pull request #5571 from dark-1/ticket/16021
...
[ticket/16021] Recognize number of Template Event instances in events.md file
2019-07-21 21:38:23 +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
Marc Alexander
17ef8a0369
[ticket/16093] Do not display attach-row-tpl
...
PHPBB3-16093
2019-07-21 20:47:16 +02:00
3D-I
2f8b9fb549
[ticket/16103] Add core.pm_modify_message_subject
...
PHPBB3-16103
2019-07-20 20:35:25 +02:00
3D-I
b9f78d64d7
[ticket/16102] Add core.posting_modify_post_subject
...
PHPBB3-16102
2019-07-20 20:24:46 +02:00
Jakub Senko
1dbb570284
[ticket/16097] Add core.viewtopic_gen_sort_selects_before
...
PHPBB3-16097
2019-07-08 09:00:30 +02:00
Casey Peel
e33e572741
[ticket/16096] Use InnoDB fulltext limits for InnoDB tables
...
The max and min search length for the MySQL database vary based on the
engine for the underlying table. For MyISAM tables, the variables are
ft_max_word_len and ft_min_word_len, but for InnoDB tables the
variables are innodb_ft_max_token_size and innodb_ft_min_token_size.
Take the posts table type into account when setting the max and min
search length.
PHPBB3-16096
2019-07-08 05:58:41 +00:00
rubencm
6787f6706e
[ticket/14459] Fix
...
PHPBB3-14459
2019-06-25 16:37:16 +00:00
rubencm
0184865c5c
[ticket/14459] Uppercase string to try to match language keys
...
PHPBB3-14459
2019-06-25 16:33:38 +00:00
rubencm
e0395fa2f2
[ticket/14459] Uppercase string to try to match language keys
...
PHPBB3-14459
2019-06-25 16:29:51 +00:00
rubencm
191008daff
[ticket/14459] Remove unused code
...
PHPBB3-14459
2019-06-25 16:23:59 +00:00
rubencm
ef3b2a3f24
[ticket/14459] Use twig
...
PHPBB3-14459
2019-06-25 16:20:00 +00:00
rubencm
6876fcb46a
[ticket/14459] Remove unused variables
...
PHPBB3-14459
2019-06-25 15:59:12 +00:00
rubencm
621747c7bc
[ticket/14459] Remove inline css
...
PHPBB3-14459
2019-06-25 15:57:44 +00:00
rubencm
caa767e5a8
[ticket/14459] Fix template logic
...
PHPBB3-14459
2019-06-21 23:32:22 +00:00
rubencm
caf5ee42fd
[ticket/14459] Fix rebase
...
PHPBB3-14459
2019-06-20 01:46:52 +00:00
rubencm
d0b50b9ca1
[ticket/14459] Check language input for group
...
PHPBB3-14459
2019-06-20 01:45:36 +00:00
Marc Alexander
ab6fd30d0d
Merge pull request #5608 from senky/ticket/15967
...
[ticket/15967] Improve admin activate email wording
2019-06-17 15:31:42 +02:00
Marc Alexander
70f09a60c7
Merge pull request #5620 from senky/ticket/16075
...
[ticket/16075] Fix warning in PM filter
2019-06-17 15:27:45 +02:00
Marc Alexander
a393a23a08
Merge pull request #5616 from JoshyPHP/ticket/16074
...
[ticket/16074] Fix Twemoji URL for ZWJ sequences
2019-06-17 13:54:38 +02:00
Marc Alexander
7f50c26941
Merge pull request #5622 from 3D-I/ticket/15211
...
[ticket/15211] Fix Emoji characters in forum name
2019-06-17 10:26:04 +02:00
Marc Alexander
2a0b38cac0
Merge pull request #5604 from senky/ticket/15984
...
[ticket/15984] Use private cache-control
2019-06-17 10:20:36 +02:00
Marc Alexander
ca705af91d
Merge pull request #5602 from senky/ticket/16003
...
[ticket/16003] Fix num_posts sync
2019-06-17 10:14:35 +02:00
Marc Alexander
c0917c2862
Merge pull request #5600 from senky/ticket/16047
...
[ticket/16047] Improve wording for PM permissions
2019-06-17 10:11:31 +02:00