From e9db0e2f1db56b4f367a690183776e33144ff991 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Tue, 26 Oct 2010 12:02:23 +0000 Subject: [PATCH] Clarify some visibilities based on actual usage --- includes/installer/WebInstaller.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/installer/WebInstaller.php b/includes/installer/WebInstaller.php index c9ef7cbb52..340b006d00 100644 --- a/includes/installer/WebInstaller.php +++ b/includes/installer/WebInstaller.php @@ -460,7 +460,7 @@ class WebInstaller extends CoreInstaller { * * @param $currentPageName String */ - public function startPageWrapper( $currentPageName ) { + private function startPageWrapper( $currentPageName ) { $s = "
\n" . "
    \n"; $lastHappy = -1; @@ -501,7 +501,7 @@ class WebInstaller extends CoreInstaller { * * @return string */ - public function getPageListItem( $pageName, $enabled, $currentPageName ) { + private function getPageListItem( $pageName, $enabled, $currentPageName ) { $s = "
  • "; $name = wfMsg( 'config-page-' . strtolower( $pageName ) ); @@ -545,7 +545,7 @@ class WebInstaller extends CoreInstaller { /** * Output some stuff after a page is finished. */ - public function endPageWrapper() { + private function endPageWrapper() { $this->output->addHTMLNoFlush( "
\n" . "
\n" . @@ -928,7 +928,7 @@ class WebInstaller extends CoreInstaller { /** * Helper for Installer::docLink() */ - public function getDocUrl( $page ) { + protected function getDocUrl( $page ) { $url = "{$_SERVER['PHP_SELF']}?page=" . urlencode( $page ); if ( in_array( $this->currentPageName, $this->pageSequence ) ) { -- 2.20.1