Index: trunk/phase3/includes/db/Database.php |
— | — | @@ -2799,6 +2799,8 @@ |
2800 | 2800 | |
2801 | 2801 | /** |
2802 | 2802 | * Begin a transaction, committing any previously open transaction |
| 2803 | + * |
| 2804 | + * @param $fname string |
2803 | 2805 | */ |
2804 | 2806 | function begin( $fname = 'DatabaseBase::begin' ) { |
2805 | 2807 | $this->query( 'BEGIN', $fname ); |
Index: trunk/phase3/includes/api/ApiUpload.php |
— | — | @@ -260,7 +260,7 @@ |
261 | 261 | global $wgUser; |
262 | 262 | $this->mUpload = new UploadFromStash( $wgUser ); |
263 | 263 | } |
264 | | - |
| 264 | + |
265 | 265 | $this->mUpload->initialize( $this->mParams['filekey'], $this->mParams['filename'] ); |
266 | 266 | |
267 | 267 | } elseif ( isset( $this->mParams['chunk'] ) ) { |
Index: trunk/phase3/includes/specials/SpecialWhatlinkshere.php |
— | — | @@ -48,7 +48,7 @@ |
49 | 49 | |
50 | 50 | function execute( $par ) { |
51 | 51 | $out = $this->getOutput(); |
52 | | - |
| 52 | + |
53 | 53 | $this->setHeaders(); |
54 | 54 | |
55 | 55 | $opts = new FormOptions(); |