Plugin Directory

Changeset 1784931


Ignore:
Timestamp:
12/11/2017 06:48:18 PM (8 years ago)
Author:
properprofile
Message:

checkin of plugin v1.1.9

Location:
proper-profile
Files:
3 edited
22 copied

Legend:

Unmodified
Added
Removed
  • proper-profile/tags/1.1.9/README.txt

    r1784698 r1784931  
    44Requires at least: 4.4
    55Tested up to: 4.8.9
    6 Stable tag: 1.1.8
     6Stable tag: 1.1.9
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7171== Changelog ==
    7272
     73= 1.1.9 =
     74* Fixed a bug that caused each API call to be executed twice.
     75
    7376= 1.1.8 =
    7477* The plugin accidentaly hijacked other plugins settings links in the plugins page. Fixed.
  • proper-profile/tags/1.1.9/admin/class-proper-profile-admin.php

    r1784698 r1784931  
    266266                $ret = 500;
    267267            }else{
    268                 $json = wp_remote_retrieve_body( wp_remote_get($proper_profile_api_url) );
     268                $json = wp_remote_retrieve_body($response);
    269269                $sql = "INSERT INTO {$table_name} (email,data) VALUES(%s,%s) ON DUPLICATE KEY UPDATE data=%s,cached_at=NOW()";
    270270                $wpdb->query($wpdb->prepare($sql,$email,$json,$json));
  • proper-profile/tags/1.1.9/proper-profile.php

    r1784698 r1784931  
    1717 * Plugin URI:        http://example.com/proper-profile-uri/
    1818 * Description:       Automagically gets all available public data on your customers, so you can make better informed decisions.
    19  * Version:           1.1.8
     19 * Version:           1.1.9
    2020 * Author:            Proper Profile
    2121 * Author URI:        https://properprofile.com/
     
    3131}
    3232
    33 define( 'PROPER_PROFILE_VERSION', '1.1.8' );
     33define( 'PROPER_PROFILE_VERSION', '1.1.9' );
    3434define( 'PROPER_PROFILE_DB_VERSION', '1.1.6' );
    3535
  • proper-profile/trunk/README.txt

    r1784698 r1784931  
    44Requires at least: 4.4
    55Tested up to: 4.8.9
    6 Stable tag: 1.1.8
     6Stable tag: 1.1.9
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7171== Changelog ==
    7272
     73= 1.1.9 =
     74* Fixed a bug that caused each API call to be executed twice.
     75
    7376= 1.1.8 =
    7477* The plugin accidentaly hijacked other plugins settings links in the plugins page. Fixed.
  • proper-profile/trunk/admin/class-proper-profile-admin.php

    r1784698 r1784931  
    266266                $ret = 500;
    267267            }else{
    268                 $json = wp_remote_retrieve_body( wp_remote_get($proper_profile_api_url) );
     268                $json = wp_remote_retrieve_body($response);
    269269                $sql = "INSERT INTO {$table_name} (email,data) VALUES(%s,%s) ON DUPLICATE KEY UPDATE data=%s,cached_at=NOW()";
    270270                $wpdb->query($wpdb->prepare($sql,$email,$json,$json));
  • proper-profile/trunk/proper-profile.php

    r1784698 r1784931  
    1717 * Plugin URI:        http://example.com/proper-profile-uri/
    1818 * Description:       Automagically gets all available public data on your customers, so you can make better informed decisions.
    19  * Version:           1.1.8
     19 * Version:           1.1.9
    2020 * Author:            Proper Profile
    2121 * Author URI:        https://properprofile.com/
     
    3131}
    3232
    33 define( 'PROPER_PROFILE_VERSION', '1.1.8' );
     33define( 'PROPER_PROFILE_VERSION', '1.1.9' );
    3434define( 'PROPER_PROFILE_DB_VERSION', '1.1.6' );
    3535
Note: See TracChangeset for help on using the changeset viewer.