From: Alexander Ebert Date: Sat, 10 Aug 2013 12:24:04 +0000 (+0200) Subject: Fixed method signature X-Git-Tag: 2.0.0_Beta_7~31^2~7 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=0a8a925313f6ffcc7f515655c47b051a55673c6d;p=GitHub%2FWoltLab%2FWCF.git Fixed method signature Fixes #1451 --- diff --git a/wcfsetup/install/files/lib/system/form/container/SingleSelectionFormElementContainer.class.php b/wcfsetup/install/files/lib/system/form/container/SingleSelectionFormElementContainer.class.php index 61104b0c12..7c18391521 100644 --- a/wcfsetup/install/files/lib/system/form/container/SingleSelectionFormElementContainer.class.php +++ b/wcfsetup/install/files/lib/system/form/container/SingleSelectionFormElementContainer.class.php @@ -29,11 +29,9 @@ class SingleSelectionFormElementContainer extends SelectionFormElementContainer } /** - * Returns container value. - * - * @return string + * @see wcf\system\form\IFormElementContainer::getValue() */ - public function getValue() { + public function getValue($key) { return $this->value; }