From: Max Semenik Date: Tue, 27 Dec 2011 11:26:24 +0000 (+0000) Subject: Postgres updater didn't output a message for some updates it ran X-Git-Tag: 1.31.0-rc.0~25723 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=adc04f1a62082fe586d01573f3bbb38f5aa24c70;p=lhc%2Fweb%2Fwiklou.git Postgres updater didn't output a message for some updates it ran --- 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' ); } }