Changeset 2775558
- Timestamp:
- 08/25/2022 01:36:18 PM (4 years ago)
- Location:
- gleap
- Files:
-
- 5 edited
- 6 copied
-
tags/6.3.0/includes/class-gleap-activator.php (modified) (1 diff)
-
tags/8.0.1 (copied) (copied from gleap/trunk)
-
tags/8.0.1/LICENSE.txt (copied) (copied from gleap/trunk/LICENSE.txt)
-
tags/8.0.1/README.txt (copied) (copied from gleap/trunk/README.txt) (1 diff)
-
tags/8.0.1/admin/class-gleap-admin.php (copied) (copied from gleap/trunk/admin/class-gleap-admin.php)
-
tags/8.0.1/gleap.php (copied) (copied from gleap/trunk/gleap.php) (2 diffs)
-
tags/8.0.1/includes/class-gleap-activator.php (modified) (1 diff)
-
tags/8.0.1/public/class-gleap-public.php (copied) (copied from gleap/trunk/public/class-gleap-public.php)
-
trunk/README.txt (modified) (1 diff)
-
trunk/gleap.php (modified) (2 diffs)
-
trunk/includes/class-gleap-activator.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gleap/tags/6.3.0/includes/class-gleap-activator.php
r2621189 r2775558 38 38 foreach ($roles as $roleName) { 39 39 $role = get_role($roleName); 40 if ( !$role->has_cap( $custom_cap )) {40 if ($role && !$role->has_cap( $custom_cap )) { 41 41 $role->add_cap( $custom_cap, $grant ); 42 42 } -
gleap/tags/8.0.1/README.txt
r2775022 r2775558 39 39 == Changelog == 40 40 41 = 8.0.1 = 42 * Fixed some minor issues. 43 41 44 = 8.0.0 = 42 45 * Updated to Gleap Widget 8.0.0 -
gleap/tags/8.0.1/gleap.php
r2775022 r2775558 17 17 * Plugin Name: Gleap 18 18 * 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. 019 * Version: 8.0.1 20 20 * Author: Gleap 21 21 * Author URI: https://www.gleap.io … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'GLEAP_VERSION', '8.0. 0' );38 define( 'GLEAP_VERSION', '8.0.1' ); 39 39 40 40 /** -
gleap/tags/8.0.1/includes/class-gleap-activator.php
r2621189 r2775558 38 38 foreach ($roles as $roleName) { 39 39 $role = get_role($roleName); 40 if ( !$role->has_cap( $custom_cap )) {40 if ($role && !$role->has_cap( $custom_cap )) { 41 41 $role->add_cap( $custom_cap, $grant ); 42 42 } -
gleap/trunk/README.txt
r2775022 r2775558 39 39 == Changelog == 40 40 41 = 8.0.1 = 42 * Fixed some minor issues. 43 41 44 = 8.0.0 = 42 45 * Updated to Gleap Widget 8.0.0 -
gleap/trunk/gleap.php
r2775022 r2775558 17 17 * Plugin Name: Gleap 18 18 * 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. 019 * Version: 8.0.1 20 20 * Author: Gleap 21 21 * Author URI: https://www.gleap.io … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'GLEAP_VERSION', '8.0. 0' );38 define( 'GLEAP_VERSION', '8.0.1' ); 39 39 40 40 /** -
gleap/trunk/includes/class-gleap-activator.php
r2621189 r2775558 38 38 foreach ($roles as $roleName) { 39 39 $role = get_role($roleName); 40 if ( !$role->has_cap( $custom_cap )) {40 if ($role && !$role->has_cap( $custom_cap )) { 41 41 $role->add_cap( $custom_cap, $grant ); 42 42 }
Note: See TracChangeset
for help on using the changeset viewer.