From: Aaron Schulz Date: Mon, 21 Jul 2014 23:44:57 +0000 (-0700) Subject: Fixed column name typo X-Git-Tag: 1.31.0-rc.0~14830 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=b063045d85a3478058266c2eed0ce82408afce1a;p=lhc%2Fweb%2Fwiklou.git Fixed column name typo Change-Id: I30bc66c0fdd8c2f787b0796f7ecb00a6fea3a924 --- diff --git a/includes/specials/SpecialMergeHistory.php b/includes/specials/SpecialMergeHistory.php index c9d3a66761..510055a803 100644 --- a/includes/specials/SpecialMergeHistory.php +++ b/includes/specials/SpecialMergeHistory.php @@ -452,7 +452,7 @@ class SpecialMergeHistory extends SpecialPage { $dbw->insert( 'pagelinks', array( 'pl_from' => $this->mDestID, - 'pf_from_namespace' => $destTitle->getNamespace(), + 'pl_from_namespace' => $destTitle->getNamespace(), 'pl_namespace' => $destTitle->getNamespace(), 'pl_title' => $destTitle->getDBkey() ), __METHOD__