Index: trunk/extensions/Filepath/SpecialFilepath.php |
— | — | @@ -45,10 +45,12 @@ |
46 | 46 | if ( ! is_null( $title ) && ! $article->exists() ) { |
47 | 47 | $wgOut->setStatusCode( 404 ); |
48 | 48 | $this->setHeaders(); |
| 49 | + $this->outputHeader(); |
49 | 50 | $cform = new FilepathForm( $title ); |
50 | 51 | $cform->execute(); |
51 | 52 | } else if ( is_null( $title ) ) { |
52 | 53 | $this->setHeaders(); |
| 54 | + $this->outputHeader(); |
53 | 55 | $cform = new FilepathForm( $title ); |
54 | 56 | $cform->execute(); |
55 | 57 | } else { |