Changeset 2460849
- Timestamp:
- 01/22/2021 10:17:17 AM (5 years ago)
- Location:
- pesapress/trunk
- Files:
-
- 8 edited
-
app/assets/js/pp-admin.js (modified) (1 diff)
-
app/assets/js/pp-admin.min.js (modified) (1 diff)
-
app/assets/js/pp-public.js (modified) (1 diff)
-
app/assets/js/pp-public.min.js (modified) (1 diff)
-
app/controller/class-pp-controller-front.php (modified) (2 diffs)
-
app/model/class-pp-model-transaction.php (modified) (1 diff)
-
pesapress.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pesapress/trunk/app/assets/js/pp-admin.js
r2458800 r2460849 1 /*! PesaPress Free - v2. 2.91 /*! PesaPress Free - v2.3 2 2 * https://alloy.co.ke/projects/pesapress 3 3 * Copyright (c) 2021; * Licensed GPLv2+ */ -
pesapress/trunk/app/assets/js/pp-admin.min.js
r2458800 r2460849 1 /*! PesaPress Free - v2. 2.91 /*! PesaPress Free - v2.3 2 2 * https://alloy.co.ke/projects/pesapress 3 3 * Copyright (c) 2021; * Licensed GPLv2+ */ -
pesapress/trunk/app/assets/js/pp-public.js
r2458800 r2460849 1 /*! PesaPress Free - v2. 2.91 /*! PesaPress Free - v2.3 2 2 * https://alloy.co.ke/projects/pesapress 3 3 * Copyright (c) 2021; * Licensed GPLv2+ */ -
pesapress/trunk/app/assets/js/pp-public.min.js
r2458800 r2460849 1 /*! PesaPress Free - v2. 2.91 /*! PesaPress Free - v2.3 2 2 * https://alloy.co.ke/projects/pesapress 3 3 * Copyright (c) 2021; * Licensed GPLv2+ */ -
pesapress/trunk/app/controller/class-pp-controller-front.php
r2460442 r2460849 139 139 $success_page = $settings->get_checkout_setting( 'success_page' ); 140 140 $success_page = get_permalink( $success_page ); 141 $success_page = apply_filters( 'pesapress_payment_return_success', get_permalink( $success_page ), $order_log ); 141 142 $success_page = add_query_arg( 'order_id', $order_id, $success_page ); 142 143 … … 158 159 } 159 160 } 161 162 do_action( 'pesapress_after_process_payment_return', $order_id, $settings, $order_log ); 163 160 164 if ( wp_redirect( $success_page ) ) { 161 165 exit; -
pesapress/trunk/app/model/class-pp-model-transaction.php
r2460442 r2460849 143 143 'value' => $page_id, 144 144 ); 145 if ( isset( $_POST['form_id'] ) ) { 146 $data_to_save[] = array( 147 'name' => 'form_id', 148 'value' => sanitize_text_field( $_POST['form_id'] ), 149 ); 150 } 151 145 152 $payment_log = new PP_Model_Log(); 146 153 $payment_log->amount = $amount; -
pesapress/trunk/pesapress.php
r2460442 r2460849 4 4 Plugin URI: https://pesapress.com/ 5 5 Description: Integrate PesaPal to WordPress and supported integrations 6 Version: 2. 2.9.26 Version: 2.3 7 7 Author: alloykenya 8 8 Author URI: https://hubloy.com … … 28 28 * @var string 29 29 */ 30 public $version = '2. 2.9.2';30 public $version = '2.3'; 31 31 32 32 -
pesapress/trunk/readme.txt
r2460442 r2460849 5 5 Tested up to: 5.6 6 6 Requires PHP: 5.6 7 Stable tag: 2. 2.9.27 Stable tag: 2.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 68 68 == Changelog == 69 69 70 = 2.3 = 71 * New : Version bump 72 * Fix : Filters for next version 73 * Fix : Other fixes 70 74 71 75 = 2.2.9.2 =
Note: See TracChangeset
for help on using the changeset viewer.