r69939 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r69938‎ | r69939 | r69940 >
Date:13:11, 26 July 2010
Author:reedy
Status:resolved (Comments)
Tags:
Comment:
Fix wrong call of static method
Modified paths:
  • /trunk/extensions/AntiSpoof/SpoofUser.php (modified) (history)

Diff [purge]

Index: trunk/extensions/AntiSpoof/SpoofUser.php
@@ -70,7 +70,7 @@
7171 * for later comparison of future names...
7272 */
7373 public function record() {
74 - return self::batchRecord( array( $this ) );
 74+ return $this->batchRecord( array( $this ) );
7575 }
7676
7777 private function insertFields() {

Follow-up revisions

RevisionCommit summaryAuthorDate
r70810Fix r16579, r69939: proper solution is to make batchRecord() static, not chan...demon12:30, 10 August 2010

Comments

#Comment by 😂 (talk | contribs)   12:31, 10 August 2010

This is wrong. Should've made batchRecord() static. Did this in r70810.

Status & tagging log