Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Remove a FIXME token (will be solved in Contao 4)
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Mar 16, 2015
1 parent 990217a commit dda3462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/modules/core/classes/Frontend.php
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ protected function parseMetaFile($strPath, $blnIsFile=false)
list($strLabel, $strValue) = array_map('trim', explode('=', $v, 2));
$this->arrMeta[$strLabel] = array_map('trim', explode('|', $strValue));

if (!$blnIsFile || in_array($strPath . '/' . $strLabel, $this->multiSRC)) # FIXME: $this->multiSRC is not used
if (!$blnIsFile || in_array($strPath . '/' . $strLabel, $this->multiSRC))
{
$this->arrAux[] = $strPath . '/' . $strLabel;
}
Expand Down

0 comments on commit dda3462

Please sign in to comment.