Index: branches/REL1_17/phase3/includes/installer/PostgresInstaller.php |
— | — | @@ -115,6 +115,7 @@ |
116 | 116 | protected function openConnectionWithParams( $user, $password, $dbName ) { |
117 | 117 | $status = Status::newGood(); |
118 | 118 | try { |
| 119 | + $GLOBALS['wgDBport'] = $this->getVar( 'wgDBport' ); |
119 | 120 | $db = new DatabasePostgres( |
120 | 121 | $this->getVar( 'wgDBserver' ), |
121 | 122 | $user, |
— | — | @@ -207,6 +208,7 @@ |
208 | 209 | $status = Status::newGood(); |
209 | 210 | foreach ( $dbs as $db ) { |
210 | 211 | try { |
| 212 | + $GLOBALS['wgDBport'] = $this->getVar( 'wgDBport' ); |
211 | 213 | $conn = new DatabasePostgres( |
212 | 214 | $this->getVar( 'wgDBserver' ), |
213 | 215 | $user, |
Index: branches/REL1_17/phase3/RELEASE-NOTES |
— | — | @@ -89,6 +89,10 @@ |
90 | 90 | * Fixed error caused by missing magic words. |
91 | 91 | * Fixed breakage of article editing in PostgreSQL due to text search |
92 | 92 | configuration errors. |
| 93 | +* Fixed the HTTPS client used when Curl is not available. This avoids an error |
| 94 | + during install about failure of the mediawiki-announce subscription. |
| 95 | +* (bug 28162) When installing to PostgreSQL, respect the "database port" input, |
| 96 | + it was ignored. |
93 | 97 | |
94 | 98 | === Configuration changes in 1.17 === |
95 | 99 | |
— | — | @@ -600,7 +604,6 @@ |
601 | 605 | in IE 7. |
602 | 606 | * (bug 17398) Fixed "link" parameter in image links with "thumb" or "frame" |
603 | 607 | parameter. |
604 | | -* (bug 27854) Http::isValidURI is way too lax. |
605 | 608 | |
606 | 609 | === API changes in 1.17 === |
607 | 610 | |