Plugin Directory

Changeset 1793479


Ignore:
Timestamp:
12/28/2017 07:19:34 AM (8 years ago)
Author:
payform
Message:

nueva version

Location:
payform/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • payform/trunk/payform.php

    r1793471 r1793479  
    22/*
    33Plugin Name: PayForm
    4 Version: 1.0.9
     4Version: 1.0.10
    55Plugin URI: http://payform.me/
    66Author: PayForm
     
    4848
    4949
     50add_action( 'init', 'payform_embed_start' );
     51
     52function payform_embed_start() {
     53  if (!get_option('payform_unique_id')) update_option('payform_unique_id',payform_base_guidv4());
     54}
     55
    5056if (!function_exists('payform_embed_content_filter')) {
    5157
     
    7985   
    8086    if (!get_option('payform_unique_id')) update_option('payform_unique_id',payform_base_guidv4());
    81     //add_action( 'admin_notices', 'payform_base_activation_notice' );
    8287    set_transient( 'payform-base-admin-notice-activation', true, 5 );
    8388}
     
    127132function payform_base_deactivation() {
    128133
     134    if (!get_option('payform_unique_id')) update_option('payform_unique_id',payform_base_guidv4());
     135
    129136    $d = urlencode(base64_encode(serialize(array(
    130137        'page_url'   => get_site_url(),
     
    141148function payform_base_uninstall() {
    142149
     150    if (!get_option('payform_unique_id')) update_option('payform_unique_id',payform_base_guidv4());
     151
    143152    $d = urlencode(base64_encode(serialize(array(
    144153        'page_url'   => get_site_url(),
  • payform/trunk/readme.txt

    r1793471 r1793479  
    44Requires at least: 3.0.1
    55Tested up to: 4.9
    6 Stable tag: 1.0.9
     6Stable tag: 1.0.10
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5252== Changelog ==
    5353
     54= 1.0.10 =
     55* Fixed bug that did not allow interoperability between other PayForm plugins
     56
    5457= 1.0.9 =
    5558* Fixed bug that did not allow interoperability between other PayForm plugins
Note: See TracChangeset for help on using the changeset viewer.