Skip to content

Commit

Permalink
Sync.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maikuolan committed Nov 6, 2024
1 parent e668a2a commit 89524d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
### v3.0.2

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

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

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

### v3.5.2

Expand Down
2 changes: 1 addition & 1 deletion src/Scanner.php
Original file line number Diff line number Diff line change
Expand Up @@ -2220,7 +2220,7 @@ private function dataHandler(string $str = '', int $Depth = 0, string $OriginalF

$SigFiles = isset($this->Loader->InstanceCache[$ThisConf[0]]) ? explode(',', $this->Loader->InstanceCache[$ThisConf[0]]) : [];
foreach ($SigFiles as $SigFile) {
if (!$SigFile) {
if ($SigFile === '' || $this->Loader->isReserved($SigFile)) {
continue;
}
if (!isset($this->Loader->InstanceCache[$SigFile])) {
Expand Down

0 comments on commit 89524d3

Please sign in to comment.