Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -2150,9 +2150,9 @@ |
2151 | 2151 | /** |
2152 | 2152 | * Recentchanges items are periodically purged; entries older than this many |
2153 | 2153 | * seconds will go. |
2154 | | - * For one week : 7 * 24 * 3600 |
| 2154 | + * Default: 13 weeks = about three monts |
2155 | 2155 | */ |
2156 | | -$wgRCMaxAge = 7 * 24 * 3600; |
| 2156 | +$wgRCMaxAge = 13 * 7 * 24 * 3600; |
2157 | 2157 | |
2158 | 2158 | /** |
2159 | 2159 | * Filter $wgRCLinkDays by $wgRCMaxAge to avoid showing links for numbers higher than what will be stored. |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -28,6 +28,7 @@ |
29 | 29 | to be shown to users |
30 | 30 | * $wgAllowRealName was deprecated in favor of $wgHiddenPrefs[] = 'realname', |
31 | 31 | but the former is still retained for backwards-compatibility |
| 32 | +* (bug 9257) $wgRCMaxAge now defaults to three months |
32 | 33 | |
33 | 34 | === New features in 1.16 === |
34 | 35 | |