Skip to content

Commit

Permalink
slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
brianteeman committed May 9, 2018
1 parent 21f90d5 commit 6ff6058
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/src/Language/Language.php
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ protected function loadLanguage($fileName, $extension = 'unknown')
*/
protected function parse($fileName)
{
$strings = JLanguageHelper::parseIniFile($fileName, $this->debug);
$strings = \JLanguageHelper::parseIniFile($fileName, $this->debug);

// Debug the ini file if needed.
if ($this->debug === true && file_exists($fileName))
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Language/LanguageHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ public static function saveToIniFile($fileName, array $strings)
// Write override.ini file with the strings.
$registry = new Registry($strings);

return JFile::write($fileName, $registry->toString('INI'));
return \JFile::write($fileName, $registry->toString('INI'));

}

Expand Down

0 comments on commit 6ff6058

Please sign in to comment.