Follow-up r89835: Accidently comitted from a deeper dir than the diff. Comitting...
authorKrinkle <krinkle@users.mediawiki.org>
Fri, 10 Jun 2011 20:16:42 +0000 (20:16 +0000)
committerKrinkle <krinkle@users.mediawiki.org>
Fri, 10 Jun 2011 20:16:42 +0000 (20:16 +0000)
includes/installer/WebInstallerPage.php

index b09ea23..e86e05b 100644 (file)
@@ -126,7 +126,7 @@ abstract class WebInstallerPage {
                $this->addHTML(
                        '<div id="config-spinner" style="display:none;"><img src="../skins/common/images/ajax-loader.gif" /></div>' .
                        '<script>jQuery( "#config-spinner" ).show();</script>' .
-                       '<textarea id="config-live-log" name="LiveLog" rows="10" cols="30" readonly="readonly">'
+                       '<div id="config-live-log"><textarea name="LiveLog" rows="10" cols="30" readonly="readonly">'
                );
                $this->parent->output->flush();
        }
@@ -135,7 +135,7 @@ abstract class WebInstallerPage {
         * Opposite to startLiveBox()
         */
        protected function endLiveBox() {
-               $this->addHTML( '</textarea>
+               $this->addHTML( '</textarea></div>
 <script>jQuery( "#config-spinner" ).hide()</script>' );
                $this->parent->output->flush();
        }