Plugin Directory

Changeset 2966042


Ignore:
Timestamp:
09/12/2023 05:59:01 PM (2 years ago)
Author:
onlineada
Message:

1.0.9

Location:
max-access
Files:
6 added
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • max-access/tags/1.0.9/CHANGELOG.md

    r2595260 r2966042  
    2121
    2222* Fixed output before header error
     23
     24## [ 1.0.9 ] - 09/6/2023
     25
     26* Tested up to WordPress 6.3.1
     27* Tested up to PHP version 8.2
  • max-access/tags/1.0.9/Readme.md

    r2654331 r2966042  
    77Author URI: https://onlineada.com
    88Author: Online ADA
    9 Tested up to: 5.8.3
     9Tested up to: 6.3.1
    1010Requires at least: 4.6
    11 Stable tag: 1.0.8
     11Stable tag: 1.0.9
    1212Version 1.0.8
    1313Requires PHP: 5.6
  • max-access/tags/1.0.9/maxaccess.php

    r2654331 r2966042  
    44 * Plugin URI: https://maxaccess.io/
    55 * Description:       This plugin helps expedite the Max Access installation process on wordpress by effortlessly connecting your Online ADA account to your website.
    6  * Version:           1.0.8
     6 * Version:           1.0.9
    77 * Requires at least: 4.6
    88 * Requires PHP:      5.6
  • max-access/tags/1.0.9/src/Plugin.php

    r2595260 r2966042  
    1111    function __construct() {
    1212        Admin::getInstance();
     13
     14        if ( get_option('max_access_settings') === null) {
     15            set_option( 'max_access_settings' )['max_access_enabled'] = true;
     16            set_option( 'max_access_settings' )['oada_license_key'] = null;
     17        }
    1318       
    1419        if(isset(get_option( 'max_access_settings' )['max_access_enabled'])) {
  • max-access/trunk/CHANGELOG.md

    r2595260 r2966042  
    2121
    2222* Fixed output before header error
     23
     24## [ 1.0.9 ] - 09/6/2023
     25
     26* Tested up to WordPress 6.3.1
     27* Tested up to PHP version 8.2
  • max-access/trunk/Readme.md

    r2654331 r2966042  
    77Author URI: https://onlineada.com
    88Author: Online ADA
    9 Tested up to: 5.8.3
     9Tested up to: 6.3.1
    1010Requires at least: 4.6
    11 Stable tag: 1.0.8
     11Stable tag: 1.0.9
    1212Version 1.0.8
    1313Requires PHP: 5.6
  • max-access/trunk/maxaccess.php

    r2654331 r2966042  
    44 * Plugin URI: https://maxaccess.io/
    55 * Description:       This plugin helps expedite the Max Access installation process on wordpress by effortlessly connecting your Online ADA account to your website.
    6  * Version:           1.0.8
     6 * Version:           1.0.9
    77 * Requires at least: 4.6
    88 * Requires PHP:      5.6
  • max-access/trunk/src/Plugin.php

    r2595260 r2966042  
    1111    function __construct() {
    1212        Admin::getInstance();
     13
     14        if ( get_option('max_access_settings') === null) {
     15            set_option( 'max_access_settings' )['max_access_enabled'] = true;
     16            set_option( 'max_access_settings' )['oada_license_key'] = null;
     17        }
    1318       
    1419        if(isset(get_option( 'max_access_settings' )['max_access_enabled'])) {
Note: See TracChangeset for help on using the changeset viewer.