Fix IDatabase::upsert() call with bad unique key parameters

Change-Id: I13c484991166eba7b90eef13c324834a39db63a9
This commit is contained in:
Aaron Schulz 2020-02-19 13:16:58 -08:00
parent 0c29b306e6
commit 0bc5117dbb

View file

@ -126,7 +126,7 @@ class EchoUnreadWikis {
$dbw->upsert(
'echo_unread_wikis',
$conditions + $values,
[ 'euw_user', 'euw_wiki' ],
[ [ 'euw_user', 'euw_wiki' ] ],
$values,
__METHOD__
);