Plugin Directory

Changeset 2870125


Ignore:
Timestamp:
02/23/2023 04:45:15 PM (3 years ago)
Author:
quentn
Message:

Guzzle files were not autoloaded due duplicated hash value

Location:
quentn-wp/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • quentn-wp/trunk/includes/class-quentn-wp.php

    r2857095 r2870125  
    7575            $this->version = QUENTN_WP_VERSION;
    7676        } else {
    77             $this->version = '1.2.5';
     77            $this->version = '1.2.6';
    7878        }
    7979        $this->plugin_name = 'quentn-wp';
  • quentn-wp/trunk/quentn-wp.php

    r2857095 r2870125  
    1717 * Plugin URI:        https://docs.quentn.com/de/beta-quentn-wordpress-plugin/installieren-und-verbinden
    1818 * Description:       This plugin allows you to restrict access to specific pages, create custom access links and create dynamic page countdowns. Optionally, you can connect your Quentn account to your WordPress installation to share contacts and manage access restrictions through Quentn.
    19  * Version:           1.2.5
     19 * Version:           1.2.6
    2020 * Author:            Quentn.com GmbH
    2121 * Author URI:        https://quentn.com/
     
    3737define( "TABLE_QUENTN_RESTRICTIONS", 'qntn_restrictions' );
    3838define( "TABLE_QUENTN_USER_DATA", 'qntn_user_data' );
    39 define( 'QUENTN_WP_VERSION', '1.2.5' );
     39define( 'QUENTN_WP_VERSION', '1.2.6' );
    4040
    4141/**
  • quentn-wp/trunk/readme.txt

    r2857095 r2870125  
    44Requires at least: 4.6.0
    55Tested up to: 6.1.1
    6 Stable tag: 1.2.5
     6Stable tag: 1.2.6
    77Requires PHP: 5.6.0
    88License: GPLv2 or later
     
    6666
    6767== Changelog ==
     68= 1.2.6 =
     69* Fix: Guzzle files were not autoloaded due to duplicated hash value.
     70
    6871= 1.2.5 =
    6972* Fix: Learndash issue when new user is registered.
     
    153156== Upgrade Notice ==
    154157
     158= 1.2.6 =
     159Thanks for using Quentn Plugin! Please update the plugin to fix error when sometimes Guzzle files were not autoloaded.
     160
    155161= 1.2.5 =
    156162Thanks for using Quentn Plugin! Please update the plugin to fix Learndash error when new user is registered.
  • quentn-wp/trunk/vendor/composer/autoload_files.php

    r2562965 r2870125  
    88return array(
    99    '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
    10     'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php',
    11     'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php',
    12     '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
    1310    '9489e01daf1c4fea15191b1fa66ae1d5' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
    1411    '42f29e5b17a2fb90587482aa5dc87da1' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php',
  • quentn-wp/trunk/vendor/composer/autoload_static.php

    r2562965 r2870125  
    99    public static $files = array (
    1010        '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
    11         'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php',
    12         'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php',
    13         '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
    1411        '9489e01daf1c4fea15191b1fa66ae1d5' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
    1512        '42f29e5b17a2fb90587482aa5dc87da1' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php',
Note: See TracChangeset for help on using the changeset viewer.