From 5098603d83aea52e1c1f90f716aacfe088f416dd Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 23 Nov 2023 10:54:23 +0200 Subject: [PATCH] after upgrade message --- upgrades/8.1/scripts/AfterUpgrade.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/upgrades/8.1/scripts/AfterUpgrade.php b/upgrades/8.1/scripts/AfterUpgrade.php index e50402caee..735f340de6 100644 --- a/upgrades/8.1/scripts/AfterUpgrade.php +++ b/upgrades/8.1/scripts/AfterUpgrade.php @@ -51,8 +51,9 @@ class AfterUpgrade 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: {link}. " . - "After that, set 'Tcpdf' at Administration > Settings > PDF 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."; } }