Plugin Directory

Changeset 1786948


Ignore:
Timestamp:
12/14/2017 12:33:17 PM (8 years ago)
Author:
rapidweb
Message:

tagging version 1.1.3

Location:
permissions-editor-for-ninja-forms
Files:
2 edited
7 copied

Legend:

Unmodified
Added
Removed
  • permissions-editor-for-ninja-forms/tags/1.1.3/permissions-editor-for-ninja_forms.php

    r1786942 r1786948  
    33Plugin Name: Permissions Editor for Ninja Forms
    44Description: This plugin enables you to select the Ninja Forms capabilities that you wish to enable different WordPress user roles to have access to.
    5 Version: 1.1.2
     5Version: 1.1.3
    66Author: Rapid Web Ltd
    77Author URI: http://rapidweb.biz
     
    9494
    9595        $role = get_role($roleKey);
     96       
     97        // Prevents fatal error if attempting to update capability on a role which has been deleted.
     98        if (!$role) {
     99            continue;
     100        }
     101
    96102        if(count($penfCapabilityKeys) > 0 )
    97103        {
  • permissions-editor-for-ninja-forms/tags/1.1.3/readme.txt

    r1786942 r1786948  
    44Requires at least: 4.1
    55Tested up to: 4.8.1
    6 Stable tag: 1.1.2
     6Stable tag: 1.1.3
    77License: LGPL-3.0
    88License URI: https://opensource.org/licenses/LGPL-3.0
  • permissions-editor-for-ninja-forms/trunk/permissions-editor-for-ninja_forms.php

    r1786942 r1786948  
    33Plugin Name: Permissions Editor for Ninja Forms
    44Description: This plugin enables you to select the Ninja Forms capabilities that you wish to enable different WordPress user roles to have access to.
    5 Version: 1.1.2
     5Version: 1.1.3
    66Author: Rapid Web Ltd
    77Author URI: http://rapidweb.biz
     
    9494
    9595        $role = get_role($roleKey);
     96       
     97        // Prevents fatal error if attempting to update capability on a role which has been deleted.
     98        if (!$role) {
     99            continue;
     100        }
     101
    96102        if(count($penfCapabilityKeys) > 0 )
    97103        {
  • permissions-editor-for-ninja-forms/trunk/readme.txt

    r1786942 r1786948  
    44Requires at least: 4.1
    55Tested up to: 4.8.1
    6 Stable tag: 1.1.2
     6Stable tag: 1.1.3
    77License: LGPL-3.0
    88License URI: https://opensource.org/licenses/LGPL-3.0
Note: See TracChangeset for help on using the changeset viewer.