From a8c1bf0a2d093abe4cb096a75aabc3d8e6e8a86f Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Wed, 3 Jan 2024 14:49:23 +0200 Subject: [PATCH] remove echo --- upgrades/8.1/scripts/AfterUpgrade.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/upgrades/8.1/scripts/AfterUpgrade.php b/upgrades/8.1/scripts/AfterUpgrade.php index 0ae4ad847e..10a6288300 100644 --- a/upgrades/8.1/scripts/AfterUpgrade.php +++ b/upgrades/8.1/scripts/AfterUpgrade.php @@ -47,14 +47,6 @@ class AfterUpgrade if ($config->get('pdfEngine') === 'Tcpdf') { $configWriter->set('pdfEngine', 'Dompdf'); - - if (php_sapi_name() === 'cli') { - echo "Important. The 'Tcpdf' PDF engine has been removed from EspoCRM. " . - "Now PDF printing is handled by the 'Dompdf' engine. " . - "If you would like to continue using the 'Tcpdf', download and install the free extension: " . - "https://github.com/yurikuzn/ext-tcpdf/releases. " . - "After that, select 'Tcpdf' PDF Engine at Administration > Settings."; - } } $configWriter->save();