Skip to content

Commit

Permalink
xpressengine/xe-core#2393 애드온 목록을 가져올 때 허용되지 않는 문자열 패턴 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
YJSoft committed Oct 23, 2019
1 parent 94d9008 commit 59e8427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/addon/addon.admin.model.php
Expand Up @@ -64,7 +64,7 @@ function getAddonList($site_srl = 0, $gtype = 'site') {
// Wanted to add a list of activated
$inserted_addons = $this->getInsertedAddons($site_srl, $gtype);
// Downloaded and installed add-on to the list of Wanted
$searched_list = FileHandler::readDir('./addons', '/^([a-zA-Z0-9-_]+)$/');
$searched_list = FileHandler::readDir('./addons', '/^([a-zA-Z0-9_]+)$/');
$searched_count = count($searched_list);
if(!$searched_count) return;
sort($searched_list);
Expand Down

0 comments on commit 59e8427

Please sign in to comment.