Index: trunk/phase3/includes/specials/SpecialSearch.php |
— | — | @@ -139,9 +139,9 @@ |
140 | 140 | |
141 | 141 | global $wgDisableTextSearch; |
142 | 142 | if ( $wgDisableTextSearch ) { |
143 | | - global $wgForwardSearchUrl; |
144 | | - if( $wgForwardSearchUrl ) { |
145 | | - $url = str_replace( '$1', urlencode( $term ), $wgForwardSearchUrl ); |
| 143 | + global $wgSearchForwardUrl; |
| 144 | + if( $wgSearchForwardUrl ) { |
| 145 | + $url = str_replace( '$1', urlencode( $term ), $wgSearchForwardUrl ); |
146 | 146 | $wgOut->redirect( $url ); |
147 | 147 | return; |
148 | 148 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -23,6 +23,8 @@ |
24 | 24 | * $wgExemptFromUserRobotsControl is an array of namespaces to be exempt from |
25 | 25 | the effect of the new __INDEX__/__NOINDEX__ magic words. (Default: null, ex- |
26 | 26 | empt all content namespaces.) |
| 27 | +* $wgForwardSearchUrl has been removed entirely. Documented setting since 1.4 |
| 28 | + has been $wgSearchForwardUrl. |
27 | 29 | |
28 | 30 | === New features in 1.14 === |
29 | 31 | |