Changeset 1089056
- Timestamp:
- 02/13/2015 02:16:54 PM (11 years ago)
- Location:
- wpf-woocommerce/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (1 diff)
-
wpf-woocommerce.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpf-woocommerce/trunk/README.txt
r1089040 r1089056 79 79 == Changelog == 80 80 81 = 2.5.2 = 82 * Fixed update error for missing WPF_WC. 83 81 84 = 2.5.1 = 82 85 * Fixed double quote error during checkout. -
wpf-woocommerce/trunk/wpf-woocommerce.php
r1089040 r1089056 4 4 Plugin URI: http://wordpress.org/plugins/wpf-woocommerce/ 5 5 Description: wpFortify provides a hosted SSL checkout page for Stripe payments. A free wpFortify account is required for this plugin to work. 6 Version: 2.5. 16 Version: 2.5.2 7 7 Author: wpFortify 8 8 Author URI: https://wpfortify.com … … 28 28 */ 29 29 public function __construct() { 30 define( 'WPF_WC_GATEWAY_VERSION', '2.5. 1' );30 define( 'WPF_WC_GATEWAY_VERSION', '2.5.2' ); 31 31 define( 'WPF_WC_GATEWAY_TEMPLATE_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) . '/templates/' ); 32 32 define( 'WPF_WC_GATEWAY_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) ); … … 118 118 */ 119 119 public function wpf_callback() { 120 $wpfortify = new WPF_WC(); 121 return $wpfortify->wpf_listen(); 120 if ( class_exists('WPF_WC') ) { 121 $wpfortify = new WPF_WC(); 122 return $wpfortify->wpf_listen(); 123 } 122 124 } 123 125
Note: See TracChangeset
for help on using the changeset viewer.