aboutsummaryrefslogtreecommitdiffstats
path: root/includes/Pingback.php
diff options
context:
space:
mode:
authorAaron Schulz <aschulz@wikimedia.org>2020-02-27 15:25:25 -0800
committerAaron Schulz <aschulz@wikimedia.org>2020-02-27 15:27:29 -0800
commit98a4fa1b378d2b41aaa150e1c96d09a3a76e146f (patch)
tree0e00fb68c865f4d7ff83bc74dca4e748a8b0c786 /includes/Pingback.php
parentb53231efcfa98aac2326f659f5fdf8aa9c5a9a60 (diff)
downloadmediawikicore-98a4fa1b378d2b41aaa150e1c96d09a3a76e146f.tar.gz
mediawikicore-98a4fa1b378d2b41aaa150e1c96d09a3a76e146f.zip
Cleanup various calls to IDatabase::upsert()
Change-Id: Ic82154f6f62014f892a64e39b4fb6aed202f32eb
Diffstat (limited to 'includes/Pingback.php')
-rw-r--r--includes/Pingback.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/Pingback.php b/includes/Pingback.php
index c63522a6acb5..438dd0ced10b 100644
--- a/includes/Pingback.php
+++ b/includes/Pingback.php
@@ -101,7 +101,7 @@ class Pingback {
return $dbw->upsert(
'updatelog',
[ 'ul_key' => $this->key, 'ul_value' => $timestamp ],
- [ 'ul_key' ],
+ 'ul_key',
[ 'ul_value' => $timestamp ],
__METHOD__
);