Scandal
Well-known member
I try to create a new route for my addon.
Let's say that Route prefix is mypage
... and the Route format is
	
	
	
		
If I visit /mypage/lalala.5/A
I can get the "Α" via $params->letter.
But if I try to visit a page with non English character or a symbols as letter:
If I visit /mypage/lalala.5/Γ
$params->letter is NULL.
Ι tried also :any<letter> but it returns also other parts from the url.
Any idea?
				
			Let's say that Route prefix is mypage
... and the Route format is
		Code:
	
	:int<data_id,title>/:str<letter>/:page
	If I visit /mypage/lalala.5/A
I can get the "Α" via $params->letter.
But if I try to visit a page with non English character or a symbols as letter:
If I visit /mypage/lalala.5/Γ
$params->letter is NULL.
Ι tried also :any<letter> but it returns also other parts from the url.
Any idea?