Index: trunk/phase3/includes/installer/WebInstaller.php |
— | — | @@ -884,15 +884,6 @@ |
885 | 885 | } |
886 | 886 | } |
887 | 887 | |
888 | | - public function showStatusMessage( $status ) { |
889 | | - $text = $status->getWikiText(); |
890 | | - $this->output->addWikiText( |
891 | | - "<div class=\"config-message\">\n" . |
892 | | - $text . |
893 | | - "</div>" |
894 | | - ); |
895 | | - } |
896 | | - |
897 | 888 | /** |
898 | 889 | * Convenience function to set variables based on form data. |
899 | 890 | * Assumes that variables containing "password" in the name are (potentially |
Index: trunk/phase3/includes/installer/Installer.php |
— | — | @@ -98,13 +98,6 @@ |
99 | 99 | * output format such as HTML or text before being sent to the user. |
100 | 100 | */ |
101 | 101 | public abstract function showMessage( $msg /*, ... */ ); |
102 | | - |
103 | | - /** |
104 | | - * TODO: doucment |
105 | | - * |
106 | | - * @param $status |
107 | | - */ |
108 | | - public abstract function showStatusMessage( $status ); |
109 | 102 | |
110 | 103 | /** |
111 | 104 | * Constructor, always call this from child classes. |
Index: trunk/phase3/includes/installer/CliInstaller.php |
— | — | @@ -96,7 +96,7 @@ |
97 | 97 | flush(); |
98 | 98 | } |
99 | 99 | |
100 | | - public function showStatusMessage( $status ) { |
| 100 | + public function showStatusMessage( Status $status ) { |
101 | 101 | $this->showMessage( $status->getWikiText() ); |
102 | 102 | } |
103 | 103 | |