From: Michael M Slusarz Date: Tue, 25 Nov 2008 06:26:30 +0000 (-0700) Subject: Unnecessary references. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=e72341aaff14c65fe5dcaaafacbf676fd7c2f1d9;p=horde.git Unnecessary references. --- diff --git a/imp/fetchmailprefs.php b/imp/fetchmailprefs.php index 4edaaa957..e13937e54 100644 --- a/imp/fetchmailprefs.php +++ b/imp/fetchmailprefs.php @@ -42,14 +42,14 @@ if ($actionID === null) { switch ($actionID) { case 'fetchmail_create': if ($driver) { - $fetchmail = &IMP_Fetchmail::factory($driver, array()); + $fetchmail = IMP_Fetchmail::factory($driver, array()); } break; case 'fetchmail_prefs_edit': $to_edit = Util::getFormData('account'); $driver = $fm_account->getValue('driver', $to_edit); - $fetchmail = &IMP_Fetchmail::factory($driver, array()); + $fetchmail = IMP_Fetchmail::factory($driver, array()); break; case 'fetchmail_prefs_save': @@ -58,7 +58,7 @@ case 'fetchmail_prefs_save': $to_edit = $fm_account->add(); } - $fetchmail = &IMP_Fetchmail::factory($driver, array()); + $fetchmail = IMP_Fetchmail::factory($driver, array()); $id = Util::getFormData('fm_id'); if (empty($id)) {