Fixed comments
authorMarcel Werk <burntime@woltlab.com>
Wed, 29 May 2013 12:47:20 +0000 (14:47 +0200)
committerMarcel Werk <burntime@woltlab.com>
Wed, 29 May 2013 12:47:20 +0000 (14:47 +0200)
wcfsetup/install/files/lib/system/package/PackageArchive.class.php
wcfsetup/install/files/lib/system/package/plugin/AbstractXMLPackageInstallationPlugin.class.php

index 639c1f829b7c8cd86aca15c7bbba3754df7bd5a9..1adfc81047ea2ce9c9da4258b936d772ed5ea798 100644 (file)
@@ -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 {
index b0af1d24c3933740a20721b10b3cc3a0026cd632..2a6aad4acffc5f052e818a060897aefde775b428 100644 (file)
@@ -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 {