Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -2812,8 +2812,8 @@ |
2813 | 2813 | /** Use the site's Cascading Style Sheets (CSS)? */ |
2814 | 2814 | $wgUseSiteCss = true; |
2815 | 2815 | |
2816 | | -/** |
2817 | | - * Filter for Special:Randompage. Part of a WHERE clause |
| 2816 | +/** |
| 2817 | + * Filter for Special:Randompage. Part of a WHERE clause |
2818 | 2818 | * @deprecated as of 1.16, use the SpecialRandomGetRandomTitle hook |
2819 | 2819 | */ |
2820 | 2820 | |
— | — | @@ -3591,6 +3591,12 @@ |
3592 | 3592 | */ |
3593 | 3593 | $wgAsyncHTTPTimeout = 60*20; |
3594 | 3594 | |
| 3595 | +/* |
| 3596 | + * if AsyncDownload is enabled (works on unix platforms) |
| 3597 | + * fix for windows is pending. |
| 3598 | + */ |
| 3599 | +$wgEnableAsyncDownload = false; |
| 3600 | + |
3595 | 3601 | /** |
3596 | 3602 | * Proxy to use for CURL requests. |
3597 | 3603 | */ |
— | — | @@ -4135,7 +4141,7 @@ |
4136 | 4142 | * from the origin domain by the Access-Control-Allow-Origin header. |
4137 | 4143 | * This is currently only used by the API (requests to api.php) |
4138 | 4144 | * $wgCrossSiteAJAXdomains can be set using a wildcard syntax: |
4139 | | - * |
| 4145 | + * |
4140 | 4146 | * '*' matches any number of characters |
4141 | 4147 | * '?' matches any 1 character |
4142 | 4148 | * |