Index: branches/REL1_13/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: branches/REL1_13/phase3/RELEASE-NOTES |
— | — | @@ -71,6 +71,8 @@ |
72 | 72 | creating new directories. |
73 | 73 | * (bug 14843) $wgCookiePrefix can be set by LocalSettings now, false defaults |
74 | 74 | current behavior. |
| 75 | +* $wgForwardSearchUrl has been removed entirely. Documented setting since 1.4 |
| 76 | + has been $wgSearchForwardUrl. |
75 | 77 | |
76 | 78 | === New features in 1.13 === |
77 | 79 | |