Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem with project using non-ANSI character (e.g. Thai) #166

Open
mahasak opened this issue Sep 3, 2015 · 0 comments
Open

Problem with project using non-ANSI character (e.g. Thai) #166

mahasak opened this issue Sep 3, 2015 · 0 comments

Comments

@mahasak
Copy link

mahasak commented 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

$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));
@mahasak 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant