Merged in bugfix/HOR-4378 (pull request #6366)

HOR-4378

Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
Approved-by: Aldo Mauricio  Veliz Valenzuela <mauricio@colosa.com>
This commit is contained in:
Julio Cesar Laura Avendaño
2018-02-22 17:29:43 +00:00
2 changed files with 10 additions and 2 deletions

View File

@@ -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;

View File

@@ -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;