From: Matthias Schmidt Date: Sun, 14 Oct 2018 13:02:06 +0000 (+0200) Subject: Fix show order reading in abstract menu PIP X-Git-Tag: 5.2.0_Alpha_1~628 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c5d78bb244aed9182b49905470fd0d3ec8a67f52;p=GitHub%2FWoltLab%2FWCF.git Fix show order reading in abstract menu PIP See #2545 --- diff --git a/wcfsetup/install/files/lib/system/package/plugin/AbstractMenuPackageInstallationPlugin.class.php b/wcfsetup/install/files/lib/system/package/plugin/AbstractMenuPackageInstallationPlugin.class.php index 68e468658c..3e22a9e7e2 100644 --- a/wcfsetup/install/files/lib/system/package/plugin/AbstractMenuPackageInstallationPlugin.class.php +++ b/wcfsetup/install/files/lib/system/package/plugin/AbstractMenuPackageInstallationPlugin.class.php @@ -302,7 +302,7 @@ abstract class AbstractMenuPackageInstallationPlugin extends AbstractXMLPackageI $data['permissions'] = $permissions->nodeValue; } - $showOrder = $element->getElementsByTagName('showOrder')->item(0); + $showOrder = $element->getElementsByTagName('showorder')->item(0); if ($showOrder !== null) { $data['showOrder'] = $showOrder->nodeValue; }