mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
Remove remaining parameters named targetIe
This commit is contained in:
parent
0e5797882f
commit
d0ba53407c
1 changed files with 5 additions and 5 deletions
|
|
@ -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')
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue