Plugin Directory

Changeset 2530323


Ignore:
Timestamp:
05/12/2021 11:40:49 AM (5 years ago)
Author:
repurpost
Message:

Version 1.0.1

Location:
repurpost/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • repurpost/trunk/admin/partials/repurpost-admin-display.php

    r2526790 r2530323  
    4545if (is_admin() && isset($generateToken)) {
    4646    if (class_exists('RepurpostWP_token')) {
    47         $token = RepurpostWP_token();
     47        $token = new RepurpostWP_token();
    4848        update_option('repurpostWP_token', $token->generateToken());
    4949    }
  • repurpost/trunk/includes/class-repurpost-activator.php

    r2526790 r2530323  
    3434        if (empty($exists_token)) {
    3535            if (class_exists('RepurpostWP_token')) {
    36                 $token = RepurpostWP_token();
     36                $token = new RepurpostWP_token();
    3737                add_option( 'repurpostWP_token', $token->generateToken(), '', 'yes' );
    3838            }
  • repurpost/trunk/readme.txt

    r2528417 r2530323  
    44Requires at least: 4.4
    55Tested up to: 5.7.1
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5050== Changelog ==
    5151
    52 = 1.0.0 =
     52= 1.0.1 =
     53
     54- Fix Token Class
     55
     56= 1.0.1 =
    5357
    5458- Initial Version with Token Based Authentication
  • repurpost/trunk/repurpost.php

    r2526790 r2530323  
    1111 * Plugin URI:        https://www.repurpost.com/
    1212 * Description:       This plugin enables the integration between the Repurpost Platform and Wordpress.
    13  * Version:           1.0.0
     13 * Version:           1.0.1
    1414 * Author:            Repurpost
    1515 * License:           GPL-2.0+
     
    2828 * Currently plugin version.
    2929 */
    30 define( 'REPURPOST_VERSION', '1.0.0' );
     30define( 'REPURPOST_VERSION', '1.0.1' );
    3131
    3232// Class RepurpostWP_token
Note: See TracChangeset for help on using the changeset viewer.