From d0ba53407c9ed3642e460d3cefc30d860dca3ec2 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Tue, 3 Jun 2025 15:37:23 +0900 Subject: [PATCH] Remove remaining parameters named targetIe --- classes/frontendfile/FrontEndFileHandler.class.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/classes/frontendfile/FrontEndFileHandler.class.php b/classes/frontendfile/FrontEndFileHandler.class.php index f98958256..a530ee3ce 100644 --- a/classes/frontendfile/FrontEndFileHandler.class.php +++ b/classes/frontendfile/FrontEndFileHandler.class.php @@ -205,13 +205,13 @@ class FrontEndFileHandler extends Handler * Get file information * * @param string $fileName The file name - * @param string $targetIe Target IE of file + * @param string $unused Formerly targetIe * @param string $media Media of file * @param array $vars Variables for LESS and SCSS * @param bool $forceMinify Whether this file should be minified * @return stdClass The file information */ - protected function getFileInfo($fileName, $targetIe = '', $media = 'all', $vars = array(), $isCommon = false) + protected function getFileInfo($fileName, $unused = '', $media = 'all', $vars = array(), $isCommon = false) { $pathInfo = pathinfo($fileName); @@ -423,13 +423,13 @@ class FrontEndFileHandler extends Handler * Unload front end file * * @param string $fileName The file name to unload - * @param string $targetIe Target IE of file to unload + * @param string $unused Formerly targetIe * @param string $media Media of file to unload. Only use when file is css. * @return void */ - public function unloadFile($fileName, $targetIe = '', $media = 'all') + public function unloadFile($fileName, $unused = '', $media = 'all') { - $file = $this->getFileInfo($fileName, $targetIe, $media); + $file = $this->getFileInfo($fileName, $unused, $media); if($file->fileExtension == 'css') {