mirror of
https://github.com/Studio-42/elFinder
synced 2026-06-08 12:37:09 +00:00
src build elFinder-2.1-c89c0ba
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* elFinder - file manager for web
|
||||
* Version 2.1.32 (2.1-src Nightly: 23fa279) (2018-02-20)
|
||||
* Version 2.1.32 (2.1-src Nightly: c89c0ba) (2018-02-21)
|
||||
* http://elfinder.org
|
||||
*
|
||||
* Copyright 2009-2018, Studio 42
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* elFinder - file manager for web
|
||||
* Version 2.1.32 (2.1-src Nightly: 23fa279) (2018-02-20)
|
||||
* Version 2.1.32 (2.1-src Nightly: c89c0ba) (2018-02-21)
|
||||
* http://elfinder.org
|
||||
*
|
||||
* Copyright 2009-2018, Studio 42
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
if (window.Encoding && Encoding.convert) {
|
||||
fm.registRawStringDecoder(function(s) {
|
||||
return Encoding.convert(s, {to:'UNICODE',type:'string'});
|
||||
};
|
||||
});
|
||||
}
|
||||
},
|
||||
{ loadType: 'tag' }
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* elFinder - file manager for web
|
||||
* Version 2.1.32 (2.1-src Nightly: 23fa279) (2018-02-20)
|
||||
* Version 2.1.32 (2.1-src Nightly: c89c0ba) (2018-02-21)
|
||||
* http://elfinder.org
|
||||
*
|
||||
* Copyright 2009-2018, Studio 42
|
||||
@@ -8917,7 +8917,7 @@ if (!String.prototype.repeat) {
|
||||
*
|
||||
* @type String
|
||||
**/
|
||||
elFinder.prototype.version = '2.1.32 (2.1-src Nightly: 23fa279)';
|
||||
elFinder.prototype.version = '2.1.32 (2.1-src Nightly: c89c0ba)';
|
||||
|
||||
|
||||
|
||||
|
||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
@@ -462,10 +462,10 @@ class elFinder {
|
||||
ini_set('internal_encoding', '');
|
||||
}
|
||||
} else {
|
||||
if (function_exists('iconv_set_encoding')) {
|
||||
if (function_exists('iconv_set_encoding') && strtoupper(iconv_get_encoding('internal_encoding')) !== 'UTF-8') {
|
||||
iconv_set_encoding('internal_encoding', 'UTF-8');
|
||||
}
|
||||
if (function_exists('mb_internal_encoding')) {
|
||||
if (function_exists('mb_internal_encoding') && strtoupper(mb_internal_encoding()) !== 'UTF-8') {
|
||||
mb_internal_encoding('UTF-8');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ class elFinderConnector {
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected static $contentType = 'Content-Type: application/json';
|
||||
protected static $contentType = 'Content-Type: application/json; charset=utf-8';
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
|
||||
Reference in New Issue
Block a user