You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 16, 2020. It is now read-only.
If in a folder I have a php file and a folder with the same name, the generator does not merge them in the generated file: sometimes the file is picked and the folder is ignored, sometimes the opposite.
I don't know if this behavior is intended, but I think both the file and the folder should be recursively merged into the generated file.
This modification of Generator.php resolves this issue:
at line 218:
if ($fileinfo->isDir()) {
// Recursivley iterate through subdirs, until everything is allocated.
if (array_key_exists($fileinfo->getFilename(), $data)) {
$data[$fileinfo->getFilename()] = array_merge_recursive($data[$fileinfo->getFilename()], $this->allocateLocaleArray($path . DIRECTORY_SEPARATOR . $fileinfo->getFilename()));
} else {
$data[$fileinfo->getFilename()] = $this->allocateLocaleArray($path . DIRECTORY_SEPARATOR . $fileinfo->getFilename());
}
}
if ($fileinfo->isFile()) {
$noExt = $this->removeExtension($fileinfo->getFilename());
If in a folder I have a php file and a folder with the same name, the generator does not merge them in the generated file: sometimes the file is picked and the folder is ignored, sometimes the opposite.
I don't know if this behavior is intended, but I think both the file and the folder should be recursively merged into the generated file.
This modification of Generator.php resolves this issue:
at line 218:
[...]
The text was updated successfully, but these errors were encountered: