Index: branches/REL1_18/phase3/includes/installer/Installer.php |
— | — | @@ -1446,9 +1446,10 @@ |
1447 | 1447 | $params['language'] = $myLang; |
1448 | 1448 | } |
1449 | 1449 | |
1450 | | - $res = Http::post( $this->mediaWikiAnnounceUrl, array( 'postData' => $params ) ); |
1451 | | - if( !$res ) { |
1452 | | - $s->warning( 'config-install-subscribe-fail' ); |
| 1450 | + $res = MWHttpRequest::factory( $this->mediaWikiAnnounceUrl, |
| 1451 | + array( 'method' => 'POST', 'postData' => $params ) )->execute(); |
| 1452 | + if( !$res->isOK() ) { |
| 1453 | + $s->warning( 'config-install-subscribe-fail', $res->getMessage() ); |
1453 | 1454 | } |
1454 | 1455 | } |
1455 | 1456 | |