X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FInstaller.php;h=c719c762e3df8b277397ae4d825839c9e83a7283;hb=35243c574fa96b447d1683a9cae234ec7958d611;hp=de154561c45ec0456fa8598d24dca52e87a97181;hpb=f6207905dc68b4a890450d11e6833a9979051a2b;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/Installer.php b/includes/installer/Installer.php index de154561c4..c719c762e3 100644 --- a/includes/installer/Installer.php +++ b/includes/installer/Installer.php @@ -1270,7 +1270,7 @@ abstract class Installer { * * @param string $directory Directory to search in, relative to $IP, must be either "extensions" * or "skins" - * @return array [ $extName => [ 'screenshots' => [ '...' ] ] + * @return array[][] [ $extName => [ 'screenshots' => [ '...' ] ] */ public function findExtensions( $directory = 'extensions' ) { switch ( $directory ) { @@ -1607,11 +1607,11 @@ abstract class Installer { // If we've hit some sort of fatal, we need to bail. // Callback already had a chance to do output above. - if ( !$status->isOk() ) { + if ( !$status->isOK() ) { break; } } - if ( $status->isOk() ) { + if ( $status->isOK() ) { $this->showMessage( 'config-install-db-success' );