From 9c166a837976301c698e1b0293813b0a4b755722 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Thu, 12 Jul 2018 21:15:39 -0700 Subject: [PATCH] installer: Add missing new-line after "comment fields are up to date" 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/MysqlUpdater.php b/includes/installer/MysqlUpdater.php index 3e1d19626e..99d6b35bd9 100644 --- a/includes/installer/MysqlUpdater.php +++ b/includes/installer/MysqlUpdater.php @@ -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" ); } } -- 2.20.1