Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmayer committed Dec 29, 2016
1 parent 64440c5 commit deb44b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libraries/cms/installer/manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ abstract class JInstallerManifest
*/
public function __construct($xmlpath = '')
{
// old and new variables are referenced for B/C
// Old and new variables are referenced for B/C
$this->authorEmail = &$this->authoremail;
$this->authorURL = &$this->authorurl;
$this->manifestFile = &$this->manifest_file;
Expand Down
3 changes: 2 additions & 1 deletion libraries/cms/installer/manifest/library.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,12 @@ class JInstallerManifestLibrary extends JInstallerManifest
* JInstallerManifestLibrary constructor.
*
* @param string $xmlpath Path to XML manifest file.
*
* @since __DEPLOY_VERSION__
*/
public function __construct($xmlpath = '')
{
// old and new variables are referenced for B/C
// Old and new variables are referenced for B/C
$this->creationDate = &$this->creationdate;
$this->libraryName = &$this->libraryname;

Expand Down
3 changes: 2 additions & 1 deletion libraries/cms/installer/manifest/package.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,12 @@ class JInstallerManifestPackage extends JInstallerManifest
* JInstallerManifestPackage constructor.
*
* @param string $xmlpath Path to XML manifest file.
*
* @since __DEPLOY_VERSION__
*/
public function __construct($xmlpath = '')
{
// old and new variables are referenced for B/C
// Old and new variables are referenced for B/C
$this->packageName = &$this->packagename;
$this->scriptFile = &$this->scriptfile;

Expand Down

0 comments on commit deb44b8

Please sign in to comment.