how to fix this syntax error,
unexpected 'have' (T_STRING) in /home/mithraa/public_html/svirtzone.com/projects/fandc/app/code/core/Mage/Newsletter/controllers/SubscriberController.php
public function unsubscribecusAction()
{
    $email = $this->getRequest()->getParam(’email’);
    $subsModel = Mage::getModel(’newsletter/subscriber’);
    $subscriber = $subsModel->loadByEmail($email);
    $id = (int) $subsModel->getId();
    $code = (string) $subsModel->getCode();
    if ($id && $code) {
        $session = Mage::getSingleton(’core/session’);
        try {
               Mage::getModel(’newsletter/subscriber’)->load($id)->setCheckCode($code)->unsubscribe();
               $session->addSuccess($this->__(’You have been unsubscribed.’));
        }
        catch (Mage_Core_Exception $e) {
            $session->addException($e, $e->getMessage());
        }
        catch (Exception $e) {
            $session->addException($e, $this->__(’There was a problem with the un-subscription.’));
        }
     }
     $this->_redirectReferer();
  } 
 
     
     
     
     
    