summaryrefslogtreecommitdiff
path: root/lib/exe
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-07-28 10:40:48 +0200
committerAndreas Gohr <andi@splitbrain.org>2012-07-28 10:40:48 +0200
commit3009a773c06e6e5d731c42b12ad82272f9706f03 (patch)
tree4e15ab478a04177de73ad9601842eee5c1be2162 /lib/exe
parentf393a4eb51a5f8ed0e64f09f76cbafe57d7dcb57 (diff)
downloadrpg-3009a773c06e6e5d731c42b12ad82272f9706f03.tar.gz
rpg-3009a773c06e6e5d731c42b12ad82272f9706f03.tar.bz2
replaced use of basename() with utf8_basename() FS#2015
Diffstat (limited to 'lib/exe')
-rw-r--r--lib/exe/fetch.php4
-rw-r--r--lib/exe/js.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/exe/fetch.php b/lib/exe/fetch.php
index 60843460e..150812b55 100644
--- a/lib/exe/fetch.php
+++ b/lib/exe/fetch.php
@@ -122,9 +122,9 @@ function sendFile($file,$mime,$dl,$cache){
//download or display?
if($dl){
- header('Content-Disposition: attachment; filename="'.basename($file).'";');
+ header('Content-Disposition: attachment; filename="'.utf8_basename($file).'";');
}else{
- header('Content-Disposition: inline; filename="'.basename($file).'";');
+ header('Content-Disposition: inline; filename="'.utf8_basename($file).'";');
}
//use x-sendfile header to pass the delivery to compatible webservers
diff --git a/lib/exe/js.php b/lib/exe/js.php
index 7c54f3e2e..f84c07709 100644
--- a/lib/exe/js.php
+++ b/lib/exe/js.php
@@ -143,7 +143,7 @@ function js_load($file){
// is it a include_once?
if($match[1]){
- $base = basename($ifile);
+ $base = utf8_basename($ifile);
if($loaded[$base]) continue;
$loaded[$base] = true;
}