You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd found issue on Goteo when users create project and using Thai character in project name.
When user submit to review admin/user itself cannot enable/publish/preview a project.
It'll always prompted an error "No project found".
issue is related to this kind of code
$project = Model\Project::get($id);
$id is a urlencoded string which is malfunction when you used with utf character
issue is solved using this solution:
$project = Model\Project::get(urldecode($id));
The text was updated successfully, but these errors were encountered:
mahasak
changed the title
Problem with project using non ANSI character (e.g. Thai)
Problem with project using non-ANSI character (e.g. Thai)
Sep 3, 2015
I'd found issue on Goteo when users create project and using Thai character in project name.
When user submit to review admin/user itself cannot enable/publish/preview a project.
It'll always prompted an error "No project found".
issue is related to this kind of code
$id is a urlencoded string which is malfunction when you used with utf character
issue is solved using this solution:
The text was updated successfully, but these errors were encountered: