installer: Add missing new-line after "comment fields are up to date"
authorTimo Tijhof <krinklemail@gmail.com>
Fri, 13 Jul 2018 04:15:39 +0000 (21:15 -0700)
committerTimo Tijhof <krinklemail@gmail.com>
Fri, 13 Jul 2018 04:16:48 +0000 (21:16 -0700)
Before:
> ...comment fields are up to date...hitcounter doesn't exist.
> ...site_stats table does not contain ss_total_views field.

After:
> ...comment fields are up to date.
> ...hitcounter doesn't exist.
> ...site_stats table does not contain ss_total_views field.

Change-Id: Ia99758f9af379a84c20d99e05838802965def3b6

includes/installer/MysqlUpdater.php

index 3e1d196..99d6b35 100644 (file)
@@ -1231,7 +1231,7 @@ class MysqlUpdater extends DatabaseUpdater {
                                'Extending edit summary lengths (and setting defaults)'
                        );
                } else {
-                       $this->output( '...comment fields are up to date' );
+                       $this->output( "...comment fields are up to date.\n" );
                }
        }