Skip to content

Commit 9273107

Browse files
committed
Bug-fix.
Looking for IPAddr in the wrong object; Fixed.
1 parent a191df1 commit 9273107

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Web.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License: GNU/GPLv2
99
* @see LICENSE.txt
1010
*
11-
* This file: Upload handler (last modified: 2022.02.01).
11+
* This file: Upload handler (last modified: 2022.02.13).
1212
*/
1313

1414
namespace phpMussel\Web;
@@ -327,7 +327,7 @@ public function scan()
327327
$this->Loader->L10N->getString('field_date'),
328328
$this->Loader->timeFormat($this->Loader->Time, $this->Loader->Configuration['core']['time_format']),
329329
$this->Loader->L10N->getString('field_ip_address'),
330-
$this->Loader->Configuration['legal']['pseudonymise_ip_addresses'] ? $this->Loader->pseudonymiseIP($this->IPAddr) : $this->IPAddr,
330+
$this->Loader->Configuration['legal']['pseudonymise_ip_addresses'] ? $this->Loader->pseudonymiseIP($this->Loader->IPAddr) : $this->Loader->IPAddr,
331331
$this->Loader->L10N->getString('field_header_scan_results_why_flagged'),
332332
$Detections,
333333
$this->Loader->L10N->getString('field_header_hash_reconstruction'),

0 commit comments

Comments
 (0)