From adc04f1a62082fe586d01573f3bbb38f5aa24c70 Mon Sep 17 00:00:00 2001 From: Max Semenik Date: Tue, 27 Dec 2011 11:26:24 +0000 Subject: [PATCH] Postgres updater didn't output a message for some updates it ran --- includes/installer/PostgresUpdater.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/installer/PostgresUpdater.php b/includes/installer/PostgresUpdater.php index f8f02dd8de..7381bfdfe0 100644 --- a/includes/installer/PostgresUpdater.php +++ b/includes/installer/PostgresUpdater.php @@ -628,12 +628,14 @@ END; protected function tsearchFixes() { # Tweak the page_title tsearch2 trigger to filter out slashes # This is create or replace, so harmless to call if not needed + $this->output( "Refreshing ts2_page_title()...\n" ); $this->applyPatch( 'patch-ts2pagetitle.sql' ); # If the server is 8.3 or higher, rewrite the tsearch2 triggers # in case they have the old 'default' versions # Gather version numbers in case we need them if ( $this->db->getServerVersion() >= 8.3 ) { + $this->output( "Rewriting tsearch2 triggers...\n" ); $this->applyPatch( 'patch-tsearch2funcs.sql' ); } } -- 2.20.1