Plugin Directory

Changeset 2621696


Ignore:
Timestamp:
10/29/2021 12:16:36 AM (4 years ago)
Author:
nabtron
Message:

missed files addition

Location:
wp-cloudflare
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-cloudflare/tags/0.1.4/readme.txt

    r2416839 r2621696  
    44Tags: cloudflare, rocketscript, enable, disable, automatic, manual, include, exclude
    55Requires at least: 4.4
    6 Tested up to: 5.5.3
    7 Stable tag: 0.1.3
     6Tested up to: 5.8.1
     7Stable tag: 0.1.4
    88
    99Disables or enables cloudflare rocket script on specific files
     
    4949== Changelog ==
    5050
     51= 0.1.4 =
     52* Confirmed WordPress 5.8.1 compatibility
     53
    5154= 0.1.3 =
    5255* Confirmed WordPress 5.5.3 compatibility
     
    6366== Upgrade Notice ==
    6467
    65 = 0.1.3 =
    66 Confirmed WordPress 5.5.3 compatibility
     68= 0.1.4 =
     69Confirmed WordPress 5.8.1 compatibility
  • wp-cloudflare/tags/0.1.4/wp-cloudflare.php

    r2416839 r2621696  
    77     Author: nabtron
    88     Author URI: http://nabtron.com/
    9      Version: 0.1.3
     9     Version: 0.1.4
    1010     Min WP Version: 4.4
    11      Max WP Version: 5.5.3
     11     Max WP Version: 5.8.1
    1212     */
    1313// prevent direct access
     
    2828    {
    2929        // Update routines
    30         if ('insert' == $_POST['action_nabcfrs']) {
     30        if (!empty($_POST['action_nabcfrs']) && 'insert' == $_POST['action_nabcfrs']) {
    3131            update_option("nabcfrs_true", $_POST['nabcfrs_true']);
    3232            update_option("nabcfrs_false", $_POST['nabcfrs_false']);
  • wp-cloudflare/trunk/readme.txt

    r2416839 r2621696  
    44Tags: cloudflare, rocketscript, enable, disable, automatic, manual, include, exclude
    55Requires at least: 4.4
    6 Tested up to: 5.5.3
    7 Stable tag: 0.1.3
     6Tested up to: 5.8.1
     7Stable tag: 0.1.4
    88
    99Disables or enables cloudflare rocket script on specific files
     
    4949== Changelog ==
    5050
     51= 0.1.4 =
     52* Confirmed WordPress 5.8.1 compatibility
     53
    5154= 0.1.3 =
    5255* Confirmed WordPress 5.5.3 compatibility
     
    6366== Upgrade Notice ==
    6467
    65 = 0.1.3 =
    66 Confirmed WordPress 5.5.3 compatibility
     68= 0.1.4 =
     69Confirmed WordPress 5.8.1 compatibility
  • wp-cloudflare/trunk/wp-cloudflare.php

    r2416839 r2621696  
    77     Author: nabtron
    88     Author URI: http://nabtron.com/
    9      Version: 0.1.3
     9     Version: 0.1.4
    1010     Min WP Version: 4.4
    11      Max WP Version: 5.5.3
     11     Max WP Version: 5.8.1
    1212     */
    1313// prevent direct access
     
    2828    {
    2929        // Update routines
    30         if ('insert' == $_POST['action_nabcfrs']) {
     30        if (!empty($_POST['action_nabcfrs']) && 'insert' == $_POST['action_nabcfrs']) {
    3131            update_option("nabcfrs_true", $_POST['nabcfrs_true']);
    3232            update_option("nabcfrs_false", $_POST['nabcfrs_false']);
Note: See TracChangeset for help on using the changeset viewer.