We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
현재 addons 폴더 리스트를 불러오는 정규식은 /^([a-zA-Z0-9-_]+)$/ 입니다.
/^([a-zA-Z0-9-_]+)$/
해당 정규식은 하이픈(-)을 포함하고 있는데 이 하이픈(-)이 xe 상에서는 문제를 일으키는 모양입니다.
정규식에서 하이픈(-)을 제거하는 게 나아 보입니다.
https://xetown.com/topics/1208070#comment_1208159
The text was updated successfully, but these errors were encountered:
하이픈을 패턴에서 제거했습니다.
Sorry, something went wrong.
#2393 애드온 목록을 가져올 때 허용되지 않는 문자열 패턴 제거
11ad91e
xpressengine/xe-core#2393 애드온 목록을 가져올 때 허용되지 않는 문자열 패턴 제거
59e8427
No branches or pull requests
현재 addons 폴더 리스트를 불러오는 정규식은
/^([a-zA-Z0-9-_]+)$/
입니다.해당 정규식은 하이픈(-)을 포함하고 있는데 이 하이픈(-)이 xe 상에서는 문제를 일으키는 모양입니다.
정규식에서 하이픈(-)을 제거하는 게 나아 보입니다.
https://xetown.com/topics/1208070#comment_1208159
The text was updated successfully, but these errors were encountered: