https://bugzilla.wikimedia.org/show_bug.cgi?id=54888

--- Comment #5 from Brion Vibber <[email protected]> ---
It was a little tricky to track this down because the code doesn't reference
messages fully by name, but I can confirm that it is using
{{NUMBEROFACTIVEUSERS}} magic word:

  'createacct-benefit-head3'        => '{{NUMBEROFACTIVEUSERS}}', # do not
translate or duplicate this message to other languages

That magic word calls SiteStats::activeUsers(), which simply pulls an existing
number out of the site_stats table:

    static function activeUsers() {
        self::load();
        return self::$row->ss_active_users;
    }

Looks like it's not updating invalid default data, or something.

-- 
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

Reply via email to