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;