Index: trunk/phase3/includes/specials/SpecialLinkSearch.php |
— | — | @@ -38,8 +38,14 @@ |
39 | 39 | parent::__construct( $name ); |
40 | 40 | } |
41 | 41 | |
| 42 | + function isCacheable() { |
| 43 | + return false; |
| 44 | + } |
| 45 | + |
42 | 46 | function execute( $par ) { |
43 | 47 | global $wgOut, $wgRequest, $wgUrlProtocols, $wgMiserMode, $wgLang, $wgScript; |
| 48 | + $this->setHeaders(); |
| 49 | + |
44 | 50 | $target = $wgRequest->getVal( 'target', $par ); |
45 | 51 | $namespace = $wgRequest->getIntorNull( 'namespace', null ); |
46 | 52 | |