BUG 9447 PM 2.0.43 testing 3 ajustar el copyright del skin uxmodern... SOLVED
- The current year in the skin was hardcoded - The current year now is dynamic
This commit is contained in:
@@ -267,7 +267,7 @@ class Main extends Controller
|
|||||||
$this->setVar('logo_company', $this->getCompanyLogo());
|
$this->setVar('logo_company', $this->getCompanyLogo());
|
||||||
$this->setVar('pmos_version', System::getVersion());
|
$this->setVar('pmos_version', System::getVersion());
|
||||||
|
|
||||||
$footerText = 'Copyright ? 2003-2011 Colosa, Inc. All rights reserved.';
|
$footerText = 'Copyright © 2003-' . date('Y') . ' Colosa, Inc. All rights reserved.';
|
||||||
$adviseText = 'Supplied free of charge with no support, certification, warranty,
|
$adviseText = 'Supplied free of charge with no support, certification, warranty,
|
||||||
maintenance nor indemnity by Colosa and its Certified Partners. ';
|
maintenance nor indemnity by Colosa and its Certified Partners. ';
|
||||||
$this->setVar('footer_text', $footerText);
|
$this->setVar('footer_text', $footerText);
|
||||||
@@ -319,7 +319,7 @@ class Main extends Controller
|
|||||||
$this->setVar('logo_company', $this->getCompanyLogo());
|
$this->setVar('logo_company', $this->getCompanyLogo());
|
||||||
$this->setVar('pmos_version', System::getVersion());
|
$this->setVar('pmos_version', System::getVersion());
|
||||||
|
|
||||||
$footerText = 'Copyright ? 2003-2011 Colosa, Inc. All rights reserved.';
|
$footerText = 'Copyright © 2003-' . date('Y') . ' Colosa, Inc. All rights reserved.';
|
||||||
$adviseText = 'Supplied free of charge with no support, certification, warranty,
|
$adviseText = 'Supplied free of charge with no support, certification, warranty,
|
||||||
maintenance nor indemnity by Colosa and its Certified Partners. ';
|
maintenance nor indemnity by Colosa and its Certified Partners. ';
|
||||||
$this->setVar('footer_text', $footerText);
|
$this->setVar('footer_text', $footerText);
|
||||||
|
|||||||
@@ -419,7 +419,7 @@ class SkinEngine
|
|||||||
if ( defined('SYS_SYS') ) {
|
if ( defined('SYS_SYS') ) {
|
||||||
$footer = "<a href=\"#\" onclick=\"openInfoPanel();return false;\" class=\"FooterLink\">| " . G::LoadTranslation('ID_SYSTEM_INFO') . " |</a><br />";
|
$footer = "<a href=\"#\" onclick=\"openInfoPanel();return false;\" class=\"FooterLink\">| " . G::LoadTranslation('ID_SYSTEM_INFO') . " |</a><br />";
|
||||||
}
|
}
|
||||||
$footer .= "<br />Copyright <EFBFBD> 2003-2008 Colosa, Inc. All rights reserved.";
|
$footer .= "<br />Copyright © 2003-" . date('Y') . " Colosa, Inc. All rights reserved.";
|
||||||
}
|
}
|
||||||
|
|
||||||
//menu
|
//menu
|
||||||
|
|||||||
Reference in New Issue
Block a user