Skip to content

Commit

Permalink
Avoid warnings in PHP 8.4 (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardolara authored Dec 22, 2024
1 parent 5084d1e commit 643f7dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/translation/lib/QaFileInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static function cacheSave( array $itens )
foreach( $itens as $item )
{
$line = array( $item->sourceHash , $item->targetHash , $item->sourceDir , $item->targetDir , $item->file , $item->days );
fputcsv( $fp , $line );
fputcsv( $fp , $line, escape: "" );
}
fclose($fp);
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/translation/lib/RevcheckFileItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function addGitLogData( string $hash , string $date , bool $skip ) : void
}

if ( $skip )
$this->diffHash = $hash;
$this->hashDiff = $hash;
else
$this->hashStop = true;
}
Expand Down

0 comments on commit 643f7dd

Please sign in to comment.