We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e93bb38 commit a7cc928Copy full SHA for a7cc928
administrator/components/com_patchtester/PatchTester/Model/PullModel.php
@@ -96,12 +96,12 @@ protected function parseFileList($files)
96
97
// Sometimes the repo filename is not the production file name
98
$prodfilename = $file->filename;
99
- $filePath = explode('/', $repofilename);
+ $filePath = explode('/', $prodfilename);
100
101
// Remove the `src` here to match the CMS paths if needed
102
if ($filePath[0] === 'src')
103
{
104
- $prodfilename = str_replace('src/', '', $file->filename);
+ $prodfilename = str_replace('src/', '', $prodfilename);
105
}
106
107
$parsedFiles[] = (object) array(
0 commit comments