Plugin Directory

Changeset 3054408


Ignore:
Timestamp:
03/19/2024 11:59:38 AM (2 years ago)
Author:
seersco
Message:

check current user is administrator to update data.

Location:
seers-cookie-consent-banner-privacy-policy
Files:
176 added
4 edited

Legend:

Unmodified
Added
Removed
  • seers-cookie-consent-banner-privacy-policy/tags/Development Versions/readme.txt

    r3050481 r3054408  
    55Requires at least: 3.8 or higher
    66Tested up to: 6.4.3
    7 Stable tag: 8.1.1
     7Stable tag: 8.1.2
    88Requires PHP: 5.3.3
    99Author URL: https://seersco.com
     
    183183== Changelog ==
    184184
     185VERSION 8.1.2
     186• on ajax calls for administrator make sure logged in user is administrator
     187
    185188VERSION 8.1.1
    186189• Secure the ajax calls by nonce
  • seers-cookie-consent-banner-privacy-policy/tags/Development Versions/seers-cookie-consent-banner-privacy-policy.php

    r3050481 r3054408  
    1111* Plugin URI: https://seersco.com/wp-cookie-plugin
    1212* Description: Seers cookie consent management platform is trusted by thousands of businesses. Become GDPR, CCPA, ePrivacy and LGPD compliant in three clicks.
    13 * Version: 8.1.1
     13* Version: 8.1.2
    1414* Author: Seers
    1515* Author URI: https://seersco.com/
     
    936936        function cookies_policy()
    937937        {
     938
     939            //if current user is not not administrator then do not do any thing
     940            if (!current_user_can( 'administrator' ))
     941                return false;
    938942
    939943            $cookie_consent_url = get_option('SCCBPP_cookie_consent_url');
     
    11411145        function cookies_setting()
    11421146        {
     1147
     1148            //if current user is not not administrator then do not do any thing
     1149            if (!current_user_can( 'administrator' ))
     1150                return false;
    11431151           
    11441152            $cookie_consent_url = get_option('SCCBPP_cookie_consent_url');
  • seers-cookie-consent-banner-privacy-policy/trunk/readme.txt

    r3050481 r3054408  
    55Requires at least: 3.8 or higher
    66Tested up to: 6.4.3
    7 Stable tag: 8.1.1
     7Stable tag: 8.1.2
    88Requires PHP: 5.3.3
    99Author URL: https://seersco.com
     
    183183== Changelog ==
    184184
     185VERSION 8.1.2
     186• on ajax calls for administrator make sure logged in user is administrator
     187
    185188VERSION 8.1.1
    186189• Secure the ajax calls by nonce
  • seers-cookie-consent-banner-privacy-policy/trunk/seers-cookie-consent-banner-privacy-policy.php

    r3050481 r3054408  
    1111* Plugin URI: https://seersco.com/wp-cookie-plugin
    1212* Description: Seers cookie consent management platform is trusted by thousands of businesses. Become GDPR, CCPA, ePrivacy and LGPD compliant in three clicks.
    13 * Version: 8.1.1
     13* Version: 8.1.2
    1414* Author: Seers
    1515* Author URI: https://seersco.com/
     
    936936        function cookies_policy()
    937937        {
     938
     939            //if current user is not not administrator then do not do any thing
     940            if (!current_user_can( 'administrator' ))
     941                return false;
    938942
    939943            $cookie_consent_url = get_option('SCCBPP_cookie_consent_url');
     
    11411145        function cookies_setting()
    11421146        {
     1147
     1148            //if current user is not not administrator then do not do any thing
     1149            if (!current_user_can( 'administrator' ))
     1150                return false;
    11431151           
    11441152            $cookie_consent_url = get_option('SCCBPP_cookie_consent_url');
Note: See TracChangeset for help on using the changeset viewer.