diff --git a/AbuseFilter.class.php b/AbuseFilter.class.php index 3a63f84ff..c6f038caa 100644 --- a/AbuseFilter.class.php +++ b/AbuseFilter.class.php @@ -695,7 +695,7 @@ class AbuseFilter { 'afl_user_text' => $wgUser->getName(), 'afl_timestamp' => $dbr->timestamp(wfTimestampNow()), 'afl_namespace' => $title->getNamespace(), - 'afl_title' => $title->getDBKey(), + 'afl_title' => $title->getDBkey(), 'afl_ip' => wfGetIp() ); // Hack to avoid revealing IPs of people creating accounts diff --git a/SpecialAbuseLog.php b/SpecialAbuseLog.php index ef9592ab1..8888fd566 100644 --- a/SpecialAbuseLog.php +++ b/SpecialAbuseLog.php @@ -109,7 +109,7 @@ class SpecialAbuseLog extends SpecialPage { $searchTitle = Title::newFromText( $this->mSearchTitle ); if ( $this->mSearchTitle && $searchTitle ) { $conds['afl_namespace'] = $searchTitle->getNamespace(); - $conds['afl_title'] = $searchTitle->getDBKey(); + $conds['afl_title'] = $searchTitle->getDBkey(); } $pager = new AbuseLogPager( $this, $conds ); diff --git a/Views/AbuseFilterViewTestBatch.php b/Views/AbuseFilterViewTestBatch.php index 9037e0e51..ecaee232a 100644 --- a/Views/AbuseFilterViewTestBatch.php +++ b/Views/AbuseFilterViewTestBatch.php @@ -96,7 +96,7 @@ class AbuseFilterViewTestBatch extends AbuseFilterView { if ($this->mTestPage) { $title = Title::newFromText( $this->mTestPage ); $conds['rc_namespace'] = $title->getNamespace(); - $conds['rc_title'] = $title->getDBKey(); + $conds['rc_title'] = $title->getDBkey(); } // Get our ChangesList