From: Michael J. Rubinsky Date: Thu, 27 Jan 2011 00:59:37 +0000 (-0500) Subject: remove uneccessary & X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d005554323ed7fae45f7c2c23539e4defc35aee3;p=horde.git remove uneccessary & --- 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")));