Marc Alexander
3bdd554b71
Merge branch '3.2.x'
2019-03-16 13:24:06 +01:00
Marc Alexander
761b87659d
Merge pull request #5520 from 3D-I/ticket/15950
...
[ticket/15950] Add SQL transactions to mcp_main.php
2019-03-16 13:24:00 +01:00
Marc Alexander
3c2ae2cb42
Merge branch '3.2.x'
2019-03-13 21:10:14 +01:00
Marc Alexander
66f9c09ba5
Merge pull request #5512 from jasonmarlin/ticket/15941
...
[ticket/15941] Replace MAX to speed up query in update_post_information
2019-03-13 21:10:06 +01:00
Marc Alexander
b64a7c406e
Merge branch '3.2.x'
2019-03-10 16:47:50 +01:00
Marc Alexander
2975566650
Merge pull request #5539 from 3D-I/ticket/15975
...
[ticket/15975] Remove user notification data upon user deletion
2019-03-10 16:47:15 +01:00
3D-I
e315ea90b8
[ticket/15975] Remove user notification data upon user deletion
...
PHPBB3-15975
2019-02-23 02:02:51 +01:00
Marc Alexander
513aec9153
Merge branch '3.2.x'
2019-02-11 08:01:21 +01:00
Marc Alexander
deebd282a7
Merge pull request #5525 from kasimi/ticket/15954
...
[ticket/15954] Add safeguards to include() calls
2019-02-11 08:01:17 +01:00
Marc Alexander
64c5d01f9e
Merge branch '3.2.x'
2019-02-11 07:58:51 +01:00
Marc Alexander
27b0719174
Merge pull request #5529 from 3D-I/ticket/15960
...
[ticket/15960] Add SQL transactions to functions_admin.php
2019-02-11 07:58:46 +01:00
3D-I
271db031ad
[ticket/15960] Add SQL transactions to functions_admin.php
...
PHPBB3-15960
2019-02-01 23:24:41 +01:00
kasimi
b4672f2665
[ticket/15954] Fixed including mcp_front.php
...
PHPBB3-15954
2019-01-30 09:48:54 +01:00
kasimi
75007697ae
[ticket/15954] Add safeguards to include() calls
...
PHPBB3-15954
2019-01-26 22:29:54 +01:00
3D-I
ca4a98a2de
[ticket/15950] Add SQL transactions to mcp_main.php
...
PHPBB3-15950
And simultaneously remove a duplicated UPDATE query.
2019-01-22 16:12:22 +01:00
Marc Alexander
e322510c6d
Merge branch '3.2.x'
2019-01-20 15:38:36 +01:00
Marc Alexander
2af8713a48
Merge pull request #5469 from senky/ticket/15899
...
[ticket/15899] Add core.modify_attachment_sql_ary_on_* events
2019-01-20 15:38:13 +01:00
jasonmarlin
c43ad073e4
[ticket/15941] Small change to induce rebuild
...
PHPBB3-15941
2019-01-18 08:38:59 -05:00
jasonmarlin
a0f1ec852a
[ticket/15941] Replace MAX SQL in functions_posting.php
...
Replace MAX SQL function with faster query using order by and limit.
The ajacent query could also be optimized to eliminate the usage of MAX.
Note that adding a compound key as suggested by EXPLAIN SQL yields an
improvement, but not nearly as fast as ORDER + LIMIT.
PHPBB3-15941
2019-01-17 20:27:10 -05:00
jasonmarlin
cffdc8efff
[ticket/15941] Replace MAX to speed up query in update_post_information
...
Replace MAX SQL function with faster query using order by and limit.
The ajacent query could also be optimized to eliminate the usage of MAX.
Note that adding a compound key as suggested by EXPLAIN SQL yields an
improvement, but not nearly as fast as ORDER + LIMIT.
PHPBB3-15941
2019-01-15 11:31:38 -05:00
Marc Alexander
4c0a948d84
Merge branch '3.2.x'
2019-01-05 16:12:43 +01:00
Marc Alexander
537ff0c567
Merge pull request #5457 from battye/ticket/15883
...
[ticket/15883] New error message for when users try adding invalid usernames to a group
2019-01-05 16:12:29 +01:00
battye
08968bdb60
[ticket/15883] Doc block change
...
PHPBB3-15883
2019-01-05 08:19:21 +00:00
battye
3f19d32f76
[ticket/15883] Review changes
...
PHPBB3-15883
2019-01-04 15:49:15 +00:00
Marc Alexander
f3cfe6b164
[ticket/14948] Use continue 2 instead of continue to continue while loop
...
PHPBB3-14948
2019-01-02 20:19:57 +01:00
Marc Alexander
75757a7db4
[ticket/14948] Update requirements and travis build matrix
...
PHPBB3-14948
2019-01-02 20:19:56 +01:00
Marc Alexander
5bc078652c
Merge branch '3.2.x'
2018-12-27 21:32:14 +01:00
Marc Alexander
3a7d17414d
Merge pull request #5468 from senky/ticket/15898
...
[ticket/15898] Add core.ucp_pm_compose_template
2018-12-27 21:31:51 +01:00
Jakub Senko
572545a430
[ticket/15899] Add core.modify_attachment_sql_ary_on_* events
...
PHPBB3-15899
2018-12-27 10:27:10 +01:00
Marc Alexander
c79da081d8
Merge branch '3.2.x'
2018-12-24 15:32:58 +01:00
Marc Alexander
58856c06b0
Merge pull request #5481 from kasimi/ticket/15910-3.2.x
...
[ticket/15910] Pass object arguments by reference implicitly
2018-12-24 15:32:50 +01:00
Marc Alexander
e389cb2fab
Merge branch '3.2.x'
2018-12-22 17:33:05 +01:00
Marc Alexander
70a56c208f
Merge branch 'prep-release-3.2.5' into 3.2.x
2018-12-22 17:31:30 +01:00
Marc Alexander
52f559cd4b
[prep-release-3.2.5] Update version numbers to 3.2.5
2018-12-19 20:16:01 +01:00
Marc Alexander
a2407ce978
[ticket/15911] Prevent errors when trying to delete from non-existent tables
...
This can happen when migrating to the latest version from versions before
3.0.14.
PHPBB3-15911
2018-12-18 21:06:51 +01:00
kasimi
83f4074116
[ticket/15910] Pass object arguments by reference implicitly
...
PHPBB3-15910
2018-12-12 12:41:56 +01:00
Marc Alexander
6e9c5c6769
Merge pull request #5336 from rubencm/ticket/12629
...
[ticket/12629] Add debug.errors_show
2018-12-03 21:18:59 +01:00
Jakub Senko
75b993c6a3
[ticket/15898] Add core.ucp_pm_compose_template
...
PHPBB3-15898
2018-12-03 14:02:38 +01:00
Marc Alexander
087bf6fd35
[ticket/15893] Pass needed language class directly to format quote
...
PHPBB3-15893
2018-12-02 19:50:09 +01:00
Marc Alexander
3eda535b91
[ticket/15892] Rename variable to commonly used $storage_attachment
...
PHPBB3-15892
2018-12-02 11:29:31 +01:00
Marc Alexander
73fd2f3573
[3.2.x] Update versions to 3.2.6-dev
2018-12-01 19:20:55 +01:00
Marc Alexander
27abc18662
[prep-release-3.2.5] Update version numbers for 3.2.5-RC1
2018-11-29 21:45:51 +01:00
battye
565f692541
[ticket/15883] Use the new language object
...
Using the new ->lang() format. Made the username
comparison case insensitive. Also fixed a bug where the return to
previous page link in the UCP was going back to the list of
groups rather than the specific manage group page when an error
occurred.
PHPBB3-15883
2018-11-29 14:37:14 +00:00
Marc Alexander
a7eb80b83b
Merge branch '3.2.x'
2018-11-28 23:26:01 +01:00
Marc Alexander
f8e1c66e81
Merge pull request #5449 from senky/ticket/15878
...
[ticket/15878] Add attachments to ucp_pm_view_message
2018-11-28 23:25:56 +01:00
Marc Alexander
685397c32e
Merge branch '3.2.x'
2018-11-28 23:21:50 +01:00
Marc Alexander
c89f4500f0
Merge pull request #5443 from toxyy/ticket/15872
...
[ticket/15872] Add show_user_activity to display_user_activity_modify_actives
2018-11-28 23:21:46 +01:00
battye
101829b4dc
[ticket/15883] Add error for invalid usernames being added to a group
...
Update the ACP and the UCP so that when bulk adding users to a group,
if invalid usernames are submitted alongside valid usernames then a
message will be displayed to inform the user what the invalid usernames
are.
PHPBB3-15883
2018-11-26 13:08:57 +00:00
Marc Alexander
2778c9b76b
Merge branch '3.2.x'
2018-11-25 11:10:28 +01:00
rxu
79e6636092
[ticket/15881] Reset login keys for account reactivation after password update
...
PHPBB3-15881
2018-11-24 11:31:32 +07:00