https://bugzilla.wikimedia.org/show_bug.cgi?id=38898
Sam Reed (reedy) <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Sam Reed (reedy) <[email protected]> 2012-07-31 22:51:41 UTC --- It'd be gu_name from CA tables, not user_name Where is this being seen? function doBatchLookups() { $batch = new LinkBatch(); # Give some pointers to make user links foreach ( $this->mResult as $row ) { $batch->add( NS_USER, $row->user_name ); $batch->add( NS_USER_TALK, $row->user_name ); } $batch->execute(); $this->mResult->rewind(); } Probably needs/wantings $row->user_name swapping for $row->gu_user (duplicate the code in the GlobalUsersPager, and replace to fix), or variablise the value of the username ( $this->userField = 'gu_name'; in the constructor then use $row->{$this->userField}, or some such abomination) -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
