From 6a7b853933daf61632bf88afb1f7efc7f6c5335c Mon Sep 17 00:00:00 2001 From: Tr3kk3r Date: Tue, 30 Aug 2011 15:13:49 +0200 Subject: [PATCH] Bugfix in packageView.tpl: Fatal error: Call to undefined method wcf\data\package\Package::parentPackage() --- wcfsetup/install/files/acp/templates/packageView.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}
-- 2.20.1