From 84beafd215c19a582928142054a72988ea1b92ed Mon Sep 17 00:00:00 2001 From: Mitsuru Mutaguchi Date: Wed, 21 Nov 2018 14:09:34 +0900 Subject: [PATCH] Update NetCommonsHtmlHelper.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: windowsでアップデート後、プラグイン管理の一覧が表示されるように対応 https://github.com/NetCommons3/NetCommons3/issues/1378 --- View/Helper/NetCommonsHtmlHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/View/Helper/NetCommonsHtmlHelper.php b/View/Helper/NetCommonsHtmlHelper.php index 3b37a995..893c7f73 100644 --- a/View/Helper/NetCommonsHtmlHelper.php +++ b/View/Helper/NetCommonsHtmlHelper.php @@ -110,7 +110,7 @@ private function __convertWebrootPath($paths) { $wwwTimeStamp = filemtime($wwwWebrootPath); $pluginTimeStamp = filemtime($pluginWebrootPath); if ($wwwTimeStamp >= $pluginTimeStamp) { - $convUrl = '/' . $match[2] . '/' . $match[1] . DS . $match[3]; + $convUrl = '/' . $match[2] . '/' . $match[1] . '/' . $match[3]; } } }