Skip to content

Commit 89524d3

Browse files
committed
Sync.
1 parent e668a2a commit 89524d3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Changelog.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
1616
### v3.0.2
1717

1818
#### Bugs fixed.
19-
- [2020.10.01; Bug-fix; v10mthibault]: Typo in Loader.php; Trying to call function sprint instead of sprintf which leads to an error; Fixed.
19+
- [2020.10.01; v10mthibault]: Typo in Loader.php; Trying to call function sprint instead of sprintf which leads to an error; Fixed.
2020
- [2020.10.15]: Wrong number of files reported when recursively scanning through directories; Fixed. *Refer [#225](https://github.com/phpMussel/phpMussel/issues/225).*
2121

2222
### v3.0.3
@@ -136,7 +136,7 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
136136
### v3.5.1
137137

138138
#### Bugs fixed.
139-
- [2024.03.21; Bug-fix; jedso]: Changed `$this->IPAddr` to `$this->Loader->IPAddr` in `Scanner.php`.
139+
- [2024.03.21; jedso]: Changed `$this->IPAddr` to `$this->Loader->IPAddr` in `Scanner.php`.
140140

141141
### v3.5.2
142142

src/Scanner.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2220,7 +2220,7 @@ private function dataHandler(string $str = '', int $Depth = 0, string $OriginalF
22202220

22212221
$SigFiles = isset($this->Loader->InstanceCache[$ThisConf[0]]) ? explode(',', $this->Loader->InstanceCache[$ThisConf[0]]) : [];
22222222
foreach ($SigFiles as $SigFile) {
2223-
if (!$SigFile) {
2223+
if ($SigFile === '' || $this->Loader->isReserved($SigFile)) {
22242224
continue;
22252225
}
22262226
if (!isset($this->Loader->InstanceCache[$SigFile])) {

0 commit comments

Comments
 (0)