From d005554323ed7fae45f7c2c23539e4defc35aee3 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Wed, 26 Jan 2011 19:59:37 -0500 Subject: [PATCH] remove uneccessary & --- kronolith/lib/Forms/CreateResource.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kronolith/lib/Forms/CreateResource.php b/kronolith/lib/Forms/CreateResource.php index a118007ad..a6cca6356 100644 --- a/kronolith/lib/Forms/CreateResource.php +++ b/kronolith/lib/Forms/CreateResource.php @@ -43,7 +43,7 @@ class Kronolith_CreateResourceForm extends Horde_Form $this->addVariable(_("Name"), 'name', 'text', true); $this->addVariable(_("Description"), 'description', 'longtext', false, false, null, array(4, 60)); $this->addVariable(_("Email"), 'email', 'email', false); - $v = &$this->addVariable(_("Response type"), 'responsetype', 'enum', true, false, null, array('enum' => $responses)); + $v = $this->addVariable(_("Response type"), 'responsetype', 'enum', true, false, null, array('enum' => $responses)); $v->setDefault(Kronolith_Resource::RESPONSETYPE_AUTO); $this->addVariable(_("Groups"), 'category', 'multienum', false, false, null, array('enum' => $enum)); $this->setButtons(array(_("Create"))); -- 2.11.0