From ca6bca551059f2600d9db63f3c462de7e6f81a2b Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Wed, 29 May 2013 14:47:20 +0200 Subject: [PATCH] Fixed comments --- .../install/files/lib/system/package/PackageArchive.class.php | 2 +- .../plugin/AbstractXMLPackageInstallationPlugin.class.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wcfsetup/install/files/lib/system/package/PackageArchive.class.php b/wcfsetup/install/files/lib/system/package/PackageArchive.class.php index 639c1f829b..1adfc81047 100644 --- a/wcfsetup/install/files/lib/system/package/PackageArchive.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageArchive.class.php @@ -152,7 +152,7 @@ class PackageArchive { throw new SystemException("package information file '".(self::INFO_FILE)."' not found in '".$this->archive."'"); } - // extract package.xml, parse with SimpleXML + // extract package.xml, parse XML // and compile an array with XML::getElementTree() $xml = new XML(); try { diff --git a/wcfsetup/install/files/lib/system/package/plugin/AbstractXMLPackageInstallationPlugin.class.php b/wcfsetup/install/files/lib/system/package/plugin/AbstractXMLPackageInstallationPlugin.class.php index b0af1d24c3..2a6aad4acf 100644 --- a/wcfsetup/install/files/lib/system/package/plugin/AbstractXMLPackageInstallationPlugin.class.php +++ b/wcfsetup/install/files/lib/system/package/plugin/AbstractXMLPackageInstallationPlugin.class.php @@ -282,7 +282,7 @@ abstract class AbstractXMLPackageInstallationPlugin extends AbstractPackageInsta throw new SystemException("xml file '".$filename."' not found in '".$this->installation->getArchive()->getArchive()."'"); } - // Extract acpmenu file and parse with SimpleXML + // Extract acpmenu file and parse XML $xml = new XML(); $tmpFile = FileUtil::getTemporaryFilename('xml_'); try { -- 2.20.1