Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Changed comment style
Changed comment style to make the linter like it.

Signed-off-by: Mateus de Lima Oliveira <[email protected]>
  • Loading branch information
ativarsoft authored Sep 21, 2022
commit d59779de32e8f509c4a94074cf93571bb1cdd5af
10 changes: 5 additions & 5 deletions lib/private/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -260,11 +260,11 @@ private function writeData() {
throw new HintException(sprintf('Configuration was not read or initialized correctly, not overwriting %s', $this->configFilePath));
}

/* This creates a checksum of the config file in memory.
* The config file opcache code is only invalidated if the
* config file data has been changed therefore all the other
* code that depend on the the config file opcode will not
* be recompiled. */
// This creates a checksum of the config file in memory.
// The config file opcache code is only invalidated if the
// config file data has been changed therefore all the other
// code that depend on the the config file opcode will not
// be recompiled.
$data = var_export($this->cache, true);

Check failure

Code scanning / Psalm

TaintedHtml

Detected tainted HTML

Check failure

Code scanning / Psalm

TaintedHtml

Detected tainted HTML
$currentChecksum = crc32($data);

Expand Down