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('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,
maintenance nor indemnity by Colosa and its Certified Partners. ';
$this->setVar('footer_text', $footerText);
@@ -319,7 +319,7 @@ class Main extends Controller
$this->setVar('logo_company', $this->getCompanyLogo());
$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,
maintenance nor indemnity by Colosa and its Certified Partners. ';
$this->setVar('footer_text', $footerText);