Index: trunk/extensions/PageTriage/PageTriage.php |
— | — | @@ -50,7 +50,8 @@ |
51 | 51 | |
52 | 52 | // Begin configuration variables |
53 | 53 | $wgPageTriagePagesPerRequest = 20; // Maximum number of articles for the API to retrieve at once |
54 | | -$wgPageTriageInfiniteScrolling = false; // Whether or not to use infinite scrolling in the page list |
| 54 | +$wgPageTriageInfiniteScrolling = true; // Whether or not to use infinite scrolling in the page list |
| 55 | +$wgPageTriageMarkPatrolledLinkExpiry = 3600 * 24 * 30; // 30 days |
55 | 56 | // End configuration variables |
56 | 57 | |
57 | 58 | $dir = dirname( __FILE__ ) . '/'; |
— | — | @@ -103,8 +104,6 @@ |
104 | 105 | $wgHooks['BeforePageDisplay'][] = 'PageTriageHooks::beforePageDisplay'; |
105 | 106 | $wgHooks['BlockIpComplete'][] = 'PageTriageHooks::onBlockIpComplete'; |
106 | 107 | |
107 | | -$wgPageTriageMarkPatrolledLinkExpiry = 3600 * 24 * 30; // 30 days |
108 | | - |
109 | 108 | /** |
110 | 109 | * @param $updater DatabaseUpdater |
111 | 110 | * @return bool |