Index: trunk/phase3/includes/installer/WebInstallerPage.php |
— | — | @@ -229,7 +229,8 @@ |
230 | 230 | $dbSupport = ''; |
231 | 231 | foreach( $this->parent->getDBTypes() as $type ) { |
232 | 232 | $db = 'Database' . ucfirst( $type ); |
233 | | - $dbSupport .= wfMsgNoTrans( "config-support-$type", $db::getSoftwareLink() ) . "\n"; |
| 233 | + $dbSupport .= wfMsgNoTrans( "config-support-$type", |
| 234 | + call_user_func( array( $db, 'getSoftwareLink' ) ) ) . "\n"; |
234 | 235 | } |
235 | 236 | $this->addHTML( $this->parent->getInfoBox( |
236 | 237 | wfMsg( 'config-support-info', $dbSupport ) ) ); |