From: Timo Tijhof Date: Fri, 13 Jul 2018 04:15:39 +0000 (-0700) Subject: installer: Add missing new-line after "comment fields are up to date" X-Git-Tag: 1.34.0-rc.0~4790 X-Git-Url: https://git.cyclocoop.org/admin//%22http:/pliny.wikipedia.org/tools/wikisearch.php/%22?a=commitdiff_plain;h=9c166a837976301c698e1b0293813b0a4b755722;p=lhc%2Fweb%2Fwiklou.git 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 --- 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" ); } }