X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FWebInstaller.php;h=b6e90a9b457d55657c0cc85a251be024319565b3;hb=4e9eb2f8d75784c78715e7dc3a9c8084d5c54943;hp=db26c0b63d0fe918eb2f904c09f96abf65d8f29f;hpb=35093297075bb55490b0c24653e0978333bc2fec;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/WebInstaller.php b/includes/installer/WebInstaller.php index db26c0b63d..b6e90a9b45 100644 --- a/includes/installer/WebInstaller.php +++ b/includes/installer/WebInstaller.php @@ -188,7 +188,9 @@ class WebInstaller extends Installer { # Special case for Creative Commons partner chooser box. if ( $this->request->getVal( 'SubmitCC' ) ) { + /** @var WebInstallerOptions $page */ $page = $this->getPageByName( 'Options' ); + '@phan-var WebInstallerOptions $page'; $this->output->useShortHeader(); $this->output->allowFrames(); $page->submitCC(); @@ -197,7 +199,9 @@ class WebInstaller extends Installer { } if ( $this->request->getVal( 'ShowCC' ) ) { + /** @var WebInstallerOptions $page */ $page = $this->getPageByName( 'Options' ); + '@phan-var WebInstallerOptions $page'; $this->output->useShortHeader(); $this->output->allowFrames(); $this->output->addHTML( $page->getCCDoneBox() );