Skip to content

Commit

Permalink
Fix namespacing
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmayer committed Sep 23, 2021
1 parent 2242fda commit 06b9f0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/src/Installer/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -2305,8 +2305,8 @@ public static function parseXMLInstallFile($path)

if ($xml->files && count($xml->files->children()))
{
$filename = JFile::getName($path);
$data['filename'] = JFile::stripExt($filename);
$filename = \JFile::getName($path);
$data['filename'] = \JFile::stripExt($filename);

foreach ($xml->files->children() as $oneFile)
{
Expand Down

0 comments on commit 06b9f0a

Please sign in to comment.