From: Tr3kk3r Date: Tue, 30 Aug 2011 13:13:49 +0000 (+0200) Subject: Bugfix in packageView.tpl: X-Git-Tag: 2.0.0_Beta_1~1801^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6a7b853933daf61632bf88afb1f7efc7f6c5335c;p=GitHub%2FWoltLab%2FWCF.git Bugfix in packageView.tpl: Fatal error: Call to undefined method wcf\data\package\Package::parentPackage() --- diff --git a/wcfsetup/install/files/acp/templates/packageView.tpl b/wcfsetup/install/files/acp/templates/packageView.tpl index 2469e05554..3ba756fb15 100644 --- a/wcfsetup/install/files/acp/templates/packageView.tpl +++ b/wcfsetup/install/files/acp/templates/packageView.tpl @@ -62,7 +62,7 @@ {if $package->parentPackageID}
{lang}wcf.acp.package.view.parent{/lang}
-
{$package->parentPackage()->getName()}
+
{$package->getParentPackage()->getName()}
{/if}