Changeset 2018130
- Timestamp:
- 01/24/2019 06:55:57 AM (7 years ago)
- Location:
- thebunch-ke-pesapal-woocommerce/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
thebunchke_pesapal_woocommerce.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
thebunch-ke-pesapal-woocommerce/trunk/readme.txt
r2013493 r2018130 5 5 Requires at least: 4.0 6 6 Tested up to: 5.1 7 Stable tag: 1.1.9. 17 Stable tag: 1.1.9.2 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 31 31 32 32 == Changelog == 33 34 = 1.1.9.2 = 35 Improvement : Remove unused code 36 Fix : PesaPal IPN method 33 37 34 38 = 1.1.9.1 = -
thebunch-ke-pesapal-woocommerce/trunk/thebunchke_pesapal_woocommerce.php
r2013495 r2018130 3 3 Plugin Name: TheBunch KE Pesapal Woocommerce 4 4 Description: Add PesaPal payment gateway to your Woocommerce plugin 5 Version: 1.1.9. 15 Version: 1.1.9.2 6 6 Author: rixeo 7 7 Author URI: http://thebunch.co.ke/ … … 120 120 121 121 add_action('woocommerce_receipt_'.$this->id, array(&$this, 'payment_page')); 122 add_action('woocommerce_api_wc_'.$this->id.'_gateway', array( $this, 'ipn_response' ) );123 add_action( $this->id.'_process_valid_ipn_request', array($this, 'process_valid_ipn_request'));122 123 add_action( 'woocommerce_api_callback', array($this, 'ipn_response') ); 124 124 125 125 } … … 532 532 echo $resp; 533 533 ob_flush(); 534 exit; 535 } 534 535 } 536 exit(); 536 537 } 537 538 }
Note: See TracChangeset
for help on using the changeset viewer.