CRM-17412 strict notice fix
authoreileenmcnaugton <eileen@fuzion.co.nz>
Fri, 16 Oct 2015 03:15:03 +0000 (16:15 +1300)
committereileenmcnaugton <eileen@fuzion.co.nz>
Fri, 16 Oct 2015 03:15:03 +0000 (16:15 +1300)
CRM/Mailing/Page/Event.php

index 1744393d36dd18c63107a45a824663104d2afb78..04af5328305b5a941991f013eca0f60636a06176 100644 (file)
@@ -32,8 +32,9 @@
  */
 
 /**
- * This implements the profile page for all contacts. It uses a selector
- * object to do the actual dispay. The fields displayd are controlled by
+ * This implements the profile page for all contacts.
+ *
+ * It uses a selector object to do the actual display. The fields displayed are controlled by
  * the admin
  */
 class CRM_Mailing_Page_Event extends CRM_Core_Page {
@@ -49,7 +50,7 @@ class CRM_Mailing_Page_Event extends CRM_Core_Page {
    * Run this page (figure out the action needed and perform it).
    */
   public function run() {
-    $selector = &new CRM_Mailing_Selector_Event(
+    $selector = new CRM_Mailing_Selector_Event(
       CRM_Utils_Request::retrieve('event', 'String', $this),
       CRM_Utils_Request::retrieve('distinct', 'Boolean', $this),
       CRM_Utils_Request::retrieve('mid', 'Positive', $this),
@@ -59,7 +60,6 @@ class CRM_Mailing_Page_Event extends CRM_Core_Page {
 
     $mailing_id = CRM_Utils_Request::retrieve('mid', 'Positive', $this);
 
-    // assign backurl
     $context = CRM_Utils_Request::retrieve('context', 'String', $this);
 
     if ($context == 'activitySelector') {