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:
Julio Cesar Laura
2012-07-17 12:36:44 -04:00
parent 96f2a586bc
commit d0dd87fc43
2 changed files with 29 additions and 29 deletions

View File

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

View File

@@ -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 &copy; 2003-" . date('Y') . " Colosa, Inc. All rights reserved.";
} }
//menu //menu