CRM-15058 - Cleanup and js bug fixes in ScheduleReminder forms
[civicrm-core.git] / CRM / Admin / Page / ConfigTaskList.php
index d1a196c9e3a2e52e1472a844cd4dca8eaa6380b1..9a1547a2abcc27301e66850e02170c88fc81379e 100644 (file)
@@ -53,18 +53,6 @@ class CRM_Admin_Page_ConfigTaskList extends CRM_Core_Page {
     $destination = urlencode($destination);
     $this->assign('destination', $destination);
 
-    CRM_Core_OptionValue::getValues(array('name' => 'from_email_address'), $optionValue);
-    if (!empty($optionValue)) {
-      list($id) = array_keys($optionValue);
-      $this->assign('fromEmailId', $id);
-    }
-
-    $payPalProId = CRM_Core_DAO::getFieldValue( 'CRM_Financial_DAO_PaymentProcessorType',
-      'PayPal', 'id', 'name'
-    );
-    if ($payPalProId) {
-      $this->assign('payPalProId', $payPalProId);
-    }
     return parent::run();
   }
 }