installer: Fix 5th param to sourceFile() in DatabaseUpdater

Bug: T293044
Change-Id: I594e2920b77735756022f4ecbf730e0c5b190471
This commit is contained in:
Paladox 2021-10-12 14:22:10 +00:00 committed by Krinkle
parent 97661702dc
commit 62bc788c9b

View file

@ -645,7 +645,9 @@ abstract class DatabaseUpdater {
null,
null,
__METHOD__,
[ $this, 'appendLine' ]
function ( $line ) {
return $this->appendLine( $line );
}
);
}