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


[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
            Version|1.14.0                      |1.16-svn




--- Comment #3 from [email protected]  2009-07-08 23:17:16 UTC ---
(Well, there should be a --flag then to say that "yes, even though I'm
frustrated with the current recentchanges table, I still want to refer
to some parts of it when rebuilding.")

P.S., Some things that are bugging me:
In tables.sql we see:
  -- If the Recent Changes Patrol option is enabled,
  -- users may mark edits as having been reviewed to
  -- remove a warning flag on the RC list.
  -- A value of 1 indicates the page has been reviewed.
  rc_patrolled tinyint unsigned NOT NULL default 0,
Well, in English parlance, "reviewed" is a lot different than
"patrolled". OK, never mind that.

And mainly, in LocalSettings.php I have
$wgUseRCPatrol=$wgUseNPPatrol=$wgGroupPermissions['sysop']['autopatrol']=false;
after running rebuildrecentchanges.php I get:
SELECT COUNT(*),rc_patrolled FROM recentchanges GROUP BY rc_patrolled
+----------+--------------+
| COUNT(*) | rc_patrolled |
+----------+--------------+
|      428 |            0 |
|       37 |            1 |
+----------+--------------+
$wgUseRCPatrol=$wgUseNPPatrol=false; gives the same.
Commenting it out entirely gives
+----------+--------------+
| COUNT(*) | rc_patrolled |
+----------+--------------+
|      385 |            0 |
|       80 |            1 |
+----------+--------------+
I just don't get it. What do I need in LocalSettings.php to say "my
wiki really doesn't care about the patrol business"?
OK, I understand that with
$wgUseRCPatrol=$wgUseNPPatrol=false my users will never be bothered
with it, but why is rc_patrolled still getting different values, and
even after running rebuildrecentchanges.php? Yes, I suppose I could
keep on analyzing to find out where the different values are being
generated, but as I use $wgUseRCPatrol=$wgUseNPPatrol=false; it is
really just an academic question, as my users will never know the difference.


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

Reply via email to