Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Fixed issue with non-ASCII-characters #1462

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion core/src/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@
* Will dispatch the actions on the plugins.
*/

setlocale(LC_ALL, "en_US.utf8"); //Set locale to UTF-8 to avoid stripping of non-ASCII-characters (e.g. in filenames).

use Pydio\Core\Http\TopLevelRouter;

include_once("base.conf.php");

$router = new TopLevelRouter();
$router->route();
$router->route();