8
0

Support for cyrillic URLs

Dieser Commit ist enthalten in:
R.M 2013-10-03 19:30:27 +04:00
Ursprung 3cb24635a0
Commit c5f112323a

Datei anzeigen

@ -132,6 +132,10 @@ function load_page($tree) {
function find_branch($tree) {
$path = url_params();
foreach($path as $peice) {
// Support for cyrillic URLs
$peice = urldecode($peice);
// Check for homepage
if (empty($peice)) {
$peice = 'index';