CiviMail - Remove debug codes
authorTim Otten <totten@civicrm.org>
Wed, 29 Oct 2014 01:15:07 +0000 (18:15 -0700)
committerTim Otten <totten@civicrm.org>
Wed, 29 Oct 2014 01:15:48 +0000 (18:15 -0700)
CRM/Mailing/BAO/Mailing.php
CRM/Mailing/Event/BAO/Opened.php

index 7785ec4284ea30b78dffe38b5c57b1ebd5cf1bc2..09cfd0e076146caa55a99159f2483d60037127eb 100644 (file)
@@ -1475,7 +1475,6 @@ ORDER BY   civicrm_email.is_bulkmail DESC
   static function add(&$params, $ids = array()) {
     $id = CRM_Utils_Array::value('mailing_id', $ids, CRM_Utils_Array::value('id', $params));
 
-
     if ($id) {
       CRM_Utils_Hook::pre('edit', 'Mailing', $id, $params);
     }
@@ -1658,8 +1657,7 @@ ORDER BY   civicrm_email.is_bulkmail DESC
       // Populate the recipients.
       $mailing->getRecipients($job->id, $mailing->id, NULL, NULL, TRUE, FALSE);
     }
-    //print_r($params);
-    //exit;
+
     return $mailing;
   }
 
index f39d7f79b1cf81de542c62ee411bc5fe3c679188..afa49507b60c63358cbce19c101cd75b93aac811 100755 (executable)
@@ -226,9 +226,6 @@ class CRM_Mailing_Event_BAO_Opened extends CRM_Mailing_Event_DAO_Opened {
   public static function &getRows($mailing_id, $job_id = NULL,
     $is_distinct = FALSE, $offset = NULL, $rowCount = NULL, $sort = NULL, $contact_id= NULL
   ) {
-    CRM_Core_Error::debug_var('3',$offset);
-    CRM_Core_Error::debug_var('4',$rowCount);
-
     $dao = new CRM_Core_Dao();
 
     $open    = self::getTableName();
@@ -272,10 +269,7 @@ class CRM_Mailing_Event_BAO_Opened extends CRM_Mailing_Event_DAO_Opened {
     $orderBy = "sort_name ASC, {$open}.time_stamp DESC";
     if ($sort) {
       if (is_string($sort)) {
-
         $sort = CRM_Utils_Type::escape($sort, 'String');
-        CRM_Core_Error::debug_var('2',$sort);
-
         $orderBy = $sort;
       }
       else {
@@ -289,7 +283,6 @@ class CRM_Mailing_Event_BAO_Opened extends CRM_Mailing_Event_DAO_Opened {
       //Added "||$rowCount" to avoid displaying all records on first page
       $query .= ' LIMIT ' . CRM_Utils_Type::escape($offset, 'Integer') . ', ' . CRM_Utils_Type::escape($rowCount, 'Integer');
     }
-    CRM_Core_Error::debug_var('1',$query);
     $dao->query($query);
 
     $results = array();