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
파비콘을 등록할때 계속 icon 파일이 아니라고 떠서 install 모듈을 살펴보니 install.admin.controller.php 파일 339 라인에 잘못 설정되어 있어서 파비콘이 등록 안되었던 것 같습니다.
if(!preg_match('/^.(ico).$/',$type)) { Context::set('msg', '*.ico '.Context::getLang('msg_possible_only_file')); return; }
이렇게 바꿔주면 좋을 것 같습니다.
The text was updated successfully, but these errors were encountered:
#695 fixed file extension filters
98de6e9
해당 커밋을 롤백한다면 PULL-REQUEST한 #713 5906704 과 충돌할 것 같습니다.
98de6e9 커밋을 보니 확장자 필터로 정규식을 수정하신것 같은데 확장자로 검사하기때문에 정규식을 파일 타입이 아닌 파일 이름의 확장자를 검사하도록 커밋했습니다.
이름을 검사하는것과, 형식을 검사하는 것에 차이점이 있나요?
Sorry, something went wrong.
뭘로 수정되던 코딩에는 정답이 정해져 있는게 아니므로 저는 오류가 안나면 만족합니다.
또 다른 해결 방법은 upgle/xe-core@5906704 이곳에 나오네요.
No branches or pull requests
파비콘을 등록할때 계속 icon 파일이 아니라고 떠서 install 모듈을 살펴보니
install.admin.controller.php 파일 339 라인에 잘못 설정되어 있어서 파비콘이 등록 안되었던 것 같습니다.
if(!preg_match('/^.(ico).$/',$type)) {
Context::set('msg', '*.ico '.Context::getLang('msg_possible_only_file'));
return;
}
이렇게 바꿔주면 좋을 것 같습니다.
The text was updated successfully, but these errors were encountered: