remove unneeded file not deleted in git rebase
[civicrm-core.git] / extern / tcIPN.php
1 <?php
2
3 /*
4 * PxPay Functionality Copyright (C) 2008 Lucas Baker,
5 * Logistic Information Systems Limited (Logis)
6 * PxAccess Functionality Copyright (C) 2008 Eileen McNaughton
7 * Licensed to CiviCRM under the Academic Free License version 3.0.
8 *
9 * Grateful acknowledgements go to Donald Lobo for invaluable assistance
10 * in creating this payment processor module
11 */
12
13
14 session_start();
15
16 require_once '../civicrm.config.php';
17 require_once 'CRM/Core/Config.php';
18
19 $config = CRM_Core_Config::singleton();
20 if (md5($_GET['key']) == md5('meh')) {
21 require_once '../CRM/Core/Payment/trustcommerceIPN.php';
22 $ipn = new CRM_Core_Payment_trustcommerce_IPN;
23 $ipn->main();
24 }
25 exit;