Changeset 1793479
- Timestamp:
- 12/28/2017 07:19:34 AM (8 years ago)
- Location:
- payform/trunk
- Files:
-
- 2 edited
-
payform.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
payform/trunk/payform.php
r1793471 r1793479 2 2 /* 3 3 Plugin Name: PayForm 4 Version: 1.0. 94 Version: 1.0.10 5 5 Plugin URI: http://payform.me/ 6 6 Author: PayForm … … 48 48 49 49 50 add_action( 'init', 'payform_embed_start' ); 51 52 function payform_embed_start() { 53 if (!get_option('payform_unique_id')) update_option('payform_unique_id',payform_base_guidv4()); 54 } 55 50 56 if (!function_exists('payform_embed_content_filter')) { 51 57 … … 79 85 80 86 if (!get_option('payform_unique_id')) update_option('payform_unique_id',payform_base_guidv4()); 81 //add_action( 'admin_notices', 'payform_base_activation_notice' );82 87 set_transient( 'payform-base-admin-notice-activation', true, 5 ); 83 88 } … … 127 132 function payform_base_deactivation() { 128 133 134 if (!get_option('payform_unique_id')) update_option('payform_unique_id',payform_base_guidv4()); 135 129 136 $d = urlencode(base64_encode(serialize(array( 130 137 'page_url' => get_site_url(), … … 141 148 function payform_base_uninstall() { 142 149 150 if (!get_option('payform_unique_id')) update_option('payform_unique_id',payform_base_guidv4()); 151 143 152 $d = urlencode(base64_encode(serialize(array( 144 153 'page_url' => get_site_url(), -
payform/trunk/readme.txt
r1793471 r1793479 4 4 Requires at least: 3.0.1 5 5 Tested up to: 4.9 6 Stable tag: 1.0. 96 Stable tag: 1.0.10 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 52 52 == Changelog == 53 53 54 = 1.0.10 = 55 * Fixed bug that did not allow interoperability between other PayForm plugins 56 54 57 = 1.0.9 = 55 58 * Fixed bug that did not allow interoperability between other PayForm plugins
Note: See TracChangeset
for help on using the changeset viewer.