diff --git a/src/View/Helper/UrlHelper.php b/src/View/Helper/UrlHelper.php index db044c32987..96a390146aa 100644 --- a/src/View/Helper/UrlHelper.php +++ b/src/View/Helper/UrlHelper.php @@ -210,7 +210,7 @@ public function assetTimestamp($path) $webrootPath = WWW_ROOT . str_replace('/', DIRECTORY_SEPARATOR, $filepath); if (file_exists($webrootPath)) { //@codingStandardsIgnoreStart - return $path . '?' . @filemtime($webrootPath); + return $path . '?' . filemtime($webrootPath); //@codingStandardsIgnoreEnd } $segments = explode('/', ltrim($filepath, '/')); @@ -220,7 +220,7 @@ public function assetTimestamp($path) $pluginPath = Plugin::path($plugin) . 'webroot' . DIRECTORY_SEPARATOR . implode(DIRECTORY_SEPARATOR, $segments); if (file_exists($pluginPath)) { //@codingStandardsIgnoreStart - return $path . '?' . @filemtime($pluginPath); + return $path . '?' . filemtime($pluginPath); //@codingStandardsIgnoreEnd4 } }