HOR-3620
Fix PMSystem -> PmSystem since Processmaker is one word.
This commit is contained in:
@@ -163,7 +163,7 @@ class AddonsManager extends BaseAddonsManager
|
||||
public function getInstalledVersion()
|
||||
{
|
||||
if ($this->isCore()) {
|
||||
return (EnterpriseUtils::pmVersion(PMSystem::getVersion()));
|
||||
return (EnterpriseUtils::pmVersion(PmSystem::getVersion()));
|
||||
} else {
|
||||
if ($this->isPlugin()) {
|
||||
if (!$this->isInstalled()) {
|
||||
@@ -251,7 +251,7 @@ class AddonsManager extends BaseAddonsManager
|
||||
);
|
||||
|
||||
// Proxy settings
|
||||
$sysConf = PMSystem::getSystemConfiguration();
|
||||
$sysConf = PmSystem::getSystemConfiguration();
|
||||
if ($sysConf['proxy_host'] != '') {
|
||||
if (!is_array($option['http'])) {
|
||||
$option['http'] = array();
|
||||
|
||||
@@ -494,7 +494,7 @@ class AddonsStore extends BaseAddonsStore
|
||||
"header" => "Content-type: application/x-www-form-urlencoded\r\n",
|
||||
"content" => http_build_query(
|
||||
array(
|
||||
"pmVersion" => PMSystem::getVersion(),
|
||||
"pmVersion" => PmSystem::getVersion(),
|
||||
"version" => STORE_VERSION
|
||||
)
|
||||
)
|
||||
@@ -502,7 +502,7 @@ class AddonsStore extends BaseAddonsStore
|
||||
);
|
||||
|
||||
// Proxy settings
|
||||
$sysConf = PMSystem::getSystemConfiguration();
|
||||
$sysConf = PmSystem::getSystemConfiguration();
|
||||
if (isset($sysConf['proxy_host'])) {
|
||||
if ($sysConf['proxy_host'] != '') {
|
||||
if (!is_array($option['http'])) {
|
||||
|
||||
@@ -148,7 +148,7 @@ class AppNotes extends BaseAppNotes
|
||||
{
|
||||
try {
|
||||
|
||||
$aConfiguration = PMSystem::getEmailConfiguration();
|
||||
$aConfiguration = PmSystem::getEmailConfiguration();
|
||||
|
||||
$msgError = "";
|
||||
if (! isset( $aConfiguration['MESS_ENABLED'] ) || $aConfiguration['MESS_ENABLED'] != '1') {
|
||||
|
||||
@@ -355,7 +355,7 @@ class Language extends BaseLanguage
|
||||
$sLanguage = $langRecord['LAN_NAME'];
|
||||
|
||||
//setting headers
|
||||
$poFile->addHeader( 'Project-Id-Version', 'ProcessMaker ' . PMSystem::getVersion() );
|
||||
$poFile->addHeader( 'Project-Id-Version', 'ProcessMaker ' . PmSystem::getVersion() );
|
||||
$poFile->addHeader( 'POT-Creation-Date', '' );
|
||||
$poFile->addHeader( 'PO-Revision-Date', date( 'Y-m-d H:i:s' ) );
|
||||
$poFile->addHeader( 'Last-Translator', '' );
|
||||
|
||||
Reference in New Issue
Block a user