Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BRIC
dokuwiki
Commits
c0837f71
Commit
c0837f71
authored
10 years ago
by
Andreas Gohr
Browse files
Options
Downloads
Plain Diff
Merge pull request #845 from gamma/master
rfc2231 compatible encoding for header()
parents
1bf4abb0
8da2ebf4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
inc/fetch.functions.php
+27
-2
27 additions, 2 deletions
inc/fetch.functions.php
inc/init.php
+2
-2
2 additions, 2 deletions
inc/init.php
with
29 additions
and
4 deletions
inc/fetch.functions.php
+
27
−
2
View file @
c0837f71
...
...
@@ -72,9 +72,9 @@ function sendFile($file, $mime, $dl, $cache, $public = false, $orig = null) {
//download or display?
if
(
$dl
)
{
header
(
'Content-Disposition: attachment;
filename
="'
.
utf8_basename
(
$orig
)
.
'
"
;'
);
header
(
'Content-Disposition: attachment;
'
.
rfc2231_encode
(
'
filename
'
,
utf8_basename
(
$orig
)
)
.
';'
);
}
else
{
header
(
'Content-Disposition: inline;
filename
="'
.
utf8_basename
(
$orig
)
.
'
"
;'
);
header
(
'Content-Disposition: inline;
'
.
rfc2231_encode
(
'
filename
'
,
utf8_basename
(
$orig
)
)
.
';'
);
}
//use x-sendfile header to pass the delivery to compatible webservers
...
...
@@ -90,6 +90,31 @@ function sendFile($file, $mime, $dl, $cache, $public = false, $orig = null) {
}
}
/**
* Try an rfc2231 compatible encoding. This ensures correct
* interpretation of filenames outside of the ASCII set.
* This seems to be needed for file names with e.g. umlauts that
* would otherwise decode wrongly in IE.
*
* There is no additional checking, just the encoding and setting the key=value for usage in headers
*
* @author Gerry Weissbach <gerry.w@gammaproduction.de>
* @param string $name name of the field to be set in the header() call
* @param string $value value of the field to be set in the header() call
* @param string $charset used charset for the encoding of value
* @param string $lang language used.
* @return string in the format " name=value" for values WITHOUT special characters
* @return string in the format " name*=charset'lang'value" for values WITH special characters
*/
function
rfc2231_encode
(
$name
,
$value
,
$charset
=
'utf-8'
,
$lang
=
'en'
)
{
$internal
=
preg_replace_callback
(
'/[\x00-\x20*\'%()<>@,;:\\\\"\/[\]?=\x80-\xFF]/'
,
function
(
$match
)
{
return
rawurlencode
(
$match
[
0
]);
},
$value
);
if
(
$value
!=
$internal
)
{
return
' '
.
$name
.
'*='
.
$charset
.
"'"
.
$lang
.
"'"
.
$internal
;
}
else
{
return
' '
.
$name
.
'="'
.
$value
.
'"'
;
}
}
/**
* Check for media for preconditions and return correct status code
*
...
...
This diff is collapsed.
Click to expand it.
inc/init.php
+
2
−
2
View file @
c0837f71
...
...
@@ -429,7 +429,7 @@ function getBaseURL($abs=null){
//if canonical url enabled always return absolute
if
(
is_null
(
$abs
))
$abs
=
$conf
[
'canonical'
];
if
(
$conf
[
'basedir'
]){
if
(
!
empty
(
$conf
[
'basedir'
])
)
{
$dir
=
$conf
[
'basedir'
];
}
elseif
(
substr
(
$_SERVER
[
'SCRIPT_NAME'
],
-
4
)
==
'.php'
){
$dir
=
dirname
(
$_SERVER
[
'SCRIPT_NAME'
]);
...
...
@@ -456,7 +456,7 @@ function getBaseURL($abs=null){
if
(
!
$abs
)
return
$dir
;
//use config option if available, trim any slash from end of baseurl to avoid multiple consecutive slashes in the path
if
(
$conf
[
'baseurl'
])
return
rtrim
(
$conf
[
'baseurl'
],
'/'
)
.
$dir
;
if
(
!
empty
(
$conf
[
'baseurl'
])
)
return
rtrim
(
$conf
[
'baseurl'
],
'/'
)
.
$dir
;
//split hostheader into host and port
if
(
isset
(
$_SERVER
[
'HTTP_HOST'
])){
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment