Máté Bartus
29e7226c96
Merge branch '3.3.x'
2021-01-22 19:14:53 +01:00
rxu
2fd4dbb685
[ticket/16690] Fix htmlspecialchars and htmlspecialchars_decode default flag
...
PHPBB3-16690
2021-01-20 00:21:24 +07:00
Marc Alexander
670a606d11
Merge branch '3.3.x'
2019-06-17 10:21:36 +02:00
Marc Alexander
a6803e6a18
Merge branch '3.2.x' into 3.3.x
2019-06-17 10:21:09 +02:00
Jakub Senko
a614e646d1
[ticket/15984] Use private cache-control
...
PHPBB3-15984
2019-05-27 15:31:35 +02:00
Rubén Calvo
65b0698ef7
[ticket/15663] Remove flash attachments support
...
PHPBB3-15663
2019-05-09 18:53:46 +02:00
Rubén Calvo
5934bdaaf1
[ticket/15692] Close db connection after use storage
...
PHPBB3-15692
2018-08-20 12:05:29 +02:00
Rubén Calvo
3966440008
[ticket/15663] Remove flash attachments support
...
PHPBB3-15663
2018-07-12 22:02:48 +02:00
Rubén Calvo
5387df2a3f
[ticket/15286] Download remote attachments properly
...
PHPBB3-15286
2018-06-27 17:49:47 +02:00
Rubén Calvo
e564ca6e60
[ticket/15286] Fix tests
...
PHPBB3-15286
2018-05-01 10:47:11 +02:00
Rubén Calvo
e749e06042
[ticket/15286] Use storage in attachments
...
PHPBB3-15286
2018-05-01 10:47:11 +02:00
rxu
f8fbe37936
[ticket/14972] replace all occurrences of sizeof() with the count()
...
PHPBB3-14972
2018-01-01 13:56:04 +01:00
Marc Alexander
93beaa8a3a
Merge branch '3.2.x'
2017-12-27 14:39:46 +01:00
Marc Alexander
6acfe2a0cb
Merge pull request #4868 from javiexin/ticket/15266
...
[ticket/15266] Fix events in content_visibility
2017-12-27 14:15:27 +01:00
javiexin
bd81af3b9e
[ticket/15266] Expand functionality of content_visibility
...
Added new function "is_visible", and replaced several immediate
uses of the above, including a single event in the new function
to handle change in all places consistently, and much simpler.
PHPBB3-15266
2017-12-27 13:27:38 +01:00
Rubén Calvo
fe20aa058f
[ticket/15276] Fix comments
...
PHPBB3-15276
2017-09-07 13:15:19 +02:00
Rubén Calvo
da3c9b3de7
[ticket/15276] Fix code and add phpdoc
...
PHPBB3-15276
2017-08-28 17:55:19 +02:00
Rubén Calvo
28060a8468
[ticket/15276] Use stream_copy_to_stream
...
PHPBB3-15276
2017-08-25 15:31:58 +02:00
Rubén Calvo
87229e1a77
[ticket/15276] Fix typo
...
PHPBB3-15276
2017-08-25 15:31:58 +02:00
Rubén Calvo
2afada5a5a
[ticket/15276] Remove avatar_path
...
PHPBB3-15276
2017-08-25 15:31:58 +02:00
Rubén Calvo
8d7336e57c
[ticket/15276] Fix code style
...
PHPBB3-15276
2017-08-25 15:31:58 +02:00
Rubén Calvo
8a47fd4120
[ticket/15276] Remove old code
...
PHPBB3-15276
2017-08-25 15:31:58 +02:00
Rubén Calvo
9e018e7c12
[ticket/15276] Use streams
...
PHPBB3-15276
2017-08-25 15:31:58 +02:00
Rubén Calvo
4c5114c14d
[ticket/15276] Use storage to download avatar
...
PHPBB3-15276
2017-08-25 15:31:58 +02:00
rxu
797234e416
[ticket/14972] replace all occurrences of sizeof() with the count()
...
PHPBB3-14972
2017-07-17 16:57:00 +07:00
Marc Alexander
442d21ace2
Merge branch '3.1.x' into 3.2.x
2016-12-28 22:23:52 +01:00
Marc Alexander
3ccaac488b
Merge pull request #4531 from senky/ticket/14817
...
[ticket/14817] Add core.send_file_to_browser_before
2016-12-28 22:19:12 +01:00
Jakub Senko
5f6fa321ef
[ticket/14817] Add core.send_file_to_browser_before
...
PHPBB3-14817
2016-12-18 21:19:31 +01:00
Marc Alexander
d894472866
Merge branch '3.1.x' into 3.2.x
2016-11-27 20:49:22 +01:00
rxu
ad4fe1799f
[ticket/14853] Add core event to allow modifying PM attachments download auth
...
PHPBB3-14853
2016-11-04 18:42:49 +07:00
Tristan Darricau
1a187e0607
Merge pull request #4440 from danchr/ticket/14774
...
[ticket/14774] Support partial downloads of attachments
* danchr/ticket/14774:
[ticket/14774] Support partial downloads of attachments
2016-09-11 13:59:06 +02:00
Marc Alexander
14cc4f3ae2
Merge branch '3.1.x' into 3.2.x
2016-09-09 23:39:23 +02:00
Dan Villiom Podlaski Christiansen
d2750b650f
[ticket/14774] Support partial downloads of attachments
...
phpBB already had limited support for partial downloads, but only for
resuming downloads, disregarding any range ending before EOF.
WebKit on iOS and OS X uses partial downloads when fetching media
files. Previously, only MP3 attachments could play directly in the
browser, reported as a live stream, but with this change, all
supported media formats should render as expected.
Tested using cURL by verifying that partial downloads give exactly the
same results compared to Apache.
PHPBB3-14774
2016-09-07 03:58:33 +02:00
Dan Villiom Podlaski Christiansen
ce48b4de57
[ticket/12133] fix download file names for WebKit-derived browsers
...
All browser engines that descend from WebKit declare themselves as
Safari in the user agent, including Chrome. Currently, the code
assumes that any Safari-like browser cannot handle the RFC-compliant
filename syntax. At least for recent versions of Safari, this is no
longer the case, and the legacy syntax results in URI-quoted
filenames. Using the standard syntax works as expected in both Safari
9 and Chrome 45.
The ticket reporting this issue is from January 2014, so we can safely
ignore compatibility: any browser still relying on the previous
behaviour is unlikely to receive security updates.
PHPBB3-12133
2016-09-07 03:17:44 +02:00
Andreas Fischer
cddf80c2e6
Merge branch '3.1.x' into 3.2.x
...
* 3.1.x:
[ticket/14291] Do not update filesize if displaying thumbnail
2016-06-11 13:45:48 +02:00
Marc Alexander
72248cab45
[ticket/14291] Do not update filesize if displaying thumbnail
...
PHPBB3-14291
2016-05-30 20:05:45 +02:00
Tristan Darricau
4212c304ab
Merge branch '3.1.x' into 3.2.x
...
* 3.1.x:
[ticket/14290] Correctly use modified since header
2016-03-25 11:10:06 +01:00
Marc Alexander
826b338275
[ticket/14290] Correctly use modified since header
...
PHPBB3-14290
2016-03-24 18:09:51 +01:00
Marc Alexander
2e3f89444a
Merge branch 'ticket/14136' into ticket/14136-3.2.x
...
Conflicts:
phpBB/adm/style/install_update_diff.html
phpBB/adm/style/installer_header.html
phpBB/install/database_update.php
phpBB/install/index.php
phpBB/styles/subsilver2/template/overall_header.html
phpBB/styles/subsilver2/template/simple_header.html
phpBB/styles/subsilver2/template/ucp_pm_viewmessage_print.html
phpBB/styles/subsilver2/template/viewtopic_print.html
2016-03-24 16:12:56 +01:00
Marc Alexander
244d171cb0
[ticket/14136] Add back X-UA-Compatible meta tag
...
This was previously removed without needing to. Adding it back to force
users to not emulate the page for previous versions of IE. The
imagetoolbar http-equiv tag was not restored as IE does not contain that
anymore since IE7. Also, the chome=1 has been removed from the
X-UA-Compatible content as ChromeFrame does not receive any further
updates since 2014 and is potentially broken.
PHPBB3-14136
2016-03-24 16:07:07 +01:00
Marc Alexander
73e6e5b77f
[ticket/13454] Remove unused variables
...
This is the first part of the changes. More to come.
PHPBB3-13454
2016-01-06 13:51:19 +01:00
Gaëtan Muller
f6e06da4c6
[ticket/13455] Update calls to request_var()
...
PHPBB3-13455
2015-02-03 20:50:40 +01:00
Andreas Fischer
e3e427fa24
Merge branch 'develop-olympus' into develop-ascraeus
...
* develop-olympus:
[ticket/13414] Set Content-Length header only if status is not 304
Conflicts:
phpBB/download/file.php
2015-01-28 19:56:47 +01:00
Jakub Senko
6400902a01
[ticket/13125] $user->browser to $browser
...
PHPBB3-13125
2014-10-02 15:34:56 +02:00
Jakub Senko
e59222496a
[ticket/13045] Remove Pragma headers
...
PHPBB3-13045
2014-09-17 20:10:01 +02:00
Jakub Senko
ea5e46f6dd
[ticket/13044] \G\M\T to GMT in whole project
...
Note that there are more uses of "\G\M\T" in vendor files.
PHPBB3-13044
2014-09-17 11:56:37 +02:00
Jakub Senko
7cbd9e9524
[ticket/13044] move GMT string out of gmdate()
...
PHPBB3-13044
2014-09-17 11:15:24 +02:00
Jakub Senko
33b2063680
[ticket/13044] Correct Expires headers
...
PHPBB3-13044
2014-09-17 10:52:19 +02:00
Andreas Fischer
12caf2f03d
[ticket/12938] Remove the 'Download all attachments' feature.
...
PHPBB3-12938
2014-08-09 16:33:59 +02:00
Yuriy Rusko
a759704b39
[ticket/12594] Remove @package tags and update file headers
...
PHPBB3-12594
2014-05-27 20:51:13 +02:00