Skip to content

Commit 643f7dd

Browse files
authored
Avoid warnings in PHP 8.4 (#212)
1 parent 5084d1e commit 643f7dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/translation/lib/QaFileInfo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static function cacheSave( array $itens )
5454
foreach( $itens as $item )
5555
{
5656
$line = array( $item->sourceHash , $item->targetHash , $item->sourceDir , $item->targetDir , $item->file , $item->days );
57-
fputcsv( $fp , $line );
57+
fputcsv( $fp , $line, escape: "" );
5858
}
5959
fclose($fp);
6060
}

scripts/translation/lib/RevcheckFileItem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function addGitLogData( string $hash , string $date , bool $skip ) : void
6262
}
6363

6464
if ( $skip )
65-
$this->diffHash = $hash;
65+
$this->hashDiff = $hash;
6666
else
6767
$this->hashStop = true;
6868
}

0 commit comments

Comments
 (0)