From 74819cc5c432340a136e38f798aff09c3149e444 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julio=20Cesar=20Laura=20Avenda=C3=B1o?= Date: Thu, 22 Feb 2018 13:17:58 -0400 Subject: [PATCH] HOR-4378 --- workflow/engine/controllers/admin.php | 6 +++++- workflow/engine/controllers/main.php | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/workflow/engine/controllers/admin.php b/workflow/engine/controllers/admin.php index 8d681f524..27017554f 100644 --- a/workflow/engine/controllers/admin.php +++ b/workflow/engine/controllers/admin.php @@ -270,7 +270,11 @@ class Admin extends Controller $pmSection = G::LoadTranslation('ID_PROCESS_INFORMATION'); $properties = array (); - $ee = class_exists( 'pmLicenseManager' ) ? " - Enterprise Edition" : ''; + $ee = ''; + /*----------------------------------********---------------------------------*/ + // In the community version this text must not be presented + $ee = ' - Enterprise Edition'; + /*----------------------------------********---------------------------------*/ $systemName = 'ProcessMaker'; if (defined('SYSTEM_NAME')) { $systemName = SYSTEM_NAME; diff --git a/workflow/engine/controllers/main.php b/workflow/engine/controllers/main.php index a7a35c9e8..045b51084 100644 --- a/workflow/engine/controllers/main.php +++ b/workflow/engine/controllers/main.php @@ -729,7 +729,11 @@ class Main extends Controller $pmSection = G::LoadTranslation('ID_PROCESS_INFORMATION'); $properties = array (); - $ee = class_exists( 'pmLicenseManager' ) ? " - Enterprise Edition" : ''; + $ee = ''; + /*----------------------------------********---------------------------------*/ + // In the community version this text must not be presented + $ee = ' - Enterprise Edition'; + /*----------------------------------********---------------------------------*/ $systemName = 'ProcessMaker'; if (defined('SYSTEM_NAME')) { $systemName = SYSTEM_NAME;