Plugin Directory

Changeset 2775558


Ignore:
Timestamp:
08/25/2022 01:36:18 PM (4 years ago)
Author:
gleap
Message:

Updated Gleap widget to v8.0.1

Location:
gleap
Files:
5 edited
6 copied

Legend:

Unmodified
Added
Removed
  • gleap/tags/6.3.0/includes/class-gleap-activator.php

    r2621189 r2775558  
    3838        foreach ($roles as $roleName) {
    3939            $role = get_role($roleName);
    40             if (!$role->has_cap( $custom_cap )) {
     40            if ($role && !$role->has_cap( $custom_cap )) {
    4141                $role->add_cap( $custom_cap, $grant );
    4242            }
  • gleap/tags/8.0.1/README.txt

    r2775022 r2775558  
    3939== Changelog ==
    4040
     41= 8.0.1 =
     42* Fixed some minor issues.
     43
    4144= 8.0.0 =
    4245* Updated to Gleap Widget 8.0.0
  • gleap/tags/8.0.1/gleap.php

    r2775022 r2775558  
    1717 * Plugin Name:       Gleap
    1818 * Description:       Gleap helps developers build the best software faster. It is your affordable in-app bug reporting tool for apps, websites and industrial applications.
    19  * Version:           8.0.0
     19 * Version:           8.0.1
    2020 * Author:            Gleap
    2121 * Author URI:        https://www.gleap.io
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'GLEAP_VERSION', '8.0.0' );
     38define( 'GLEAP_VERSION', '8.0.1' );
    3939
    4040/**
  • gleap/tags/8.0.1/includes/class-gleap-activator.php

    r2621189 r2775558  
    3838        foreach ($roles as $roleName) {
    3939            $role = get_role($roleName);
    40             if (!$role->has_cap( $custom_cap )) {
     40            if ($role && !$role->has_cap( $custom_cap )) {
    4141                $role->add_cap( $custom_cap, $grant );
    4242            }
  • gleap/trunk/README.txt

    r2775022 r2775558  
    3939== Changelog ==
    4040
     41= 8.0.1 =
     42* Fixed some minor issues.
     43
    4144= 8.0.0 =
    4245* Updated to Gleap Widget 8.0.0
  • gleap/trunk/gleap.php

    r2775022 r2775558  
    1717 * Plugin Name:       Gleap
    1818 * Description:       Gleap helps developers build the best software faster. It is your affordable in-app bug reporting tool for apps, websites and industrial applications.
    19  * Version:           8.0.0
     19 * Version:           8.0.1
    2020 * Author:            Gleap
    2121 * Author URI:        https://www.gleap.io
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'GLEAP_VERSION', '8.0.0' );
     38define( 'GLEAP_VERSION', '8.0.1' );
    3939
    4040/**
  • gleap/trunk/includes/class-gleap-activator.php

    r2621189 r2775558  
    3838        foreach ($roles as $roleName) {
    3939            $role = get_role($roleName);
    40             if (!$role->has_cap( $custom_cap )) {
     40            if ($role && !$role->has_cap( $custom_cap )) {
    4141                $role->add_cap( $custom_cap, $grant );
    4242            }
Note: See TracChangeset for help on using the changeset viewer.