Plugin Directory

Changeset 1504184


Ignore:
Timestamp:
09/28/2016 05:13:08 AM (10 years ago)
Author:
osexcel
Message:

6.5.12

  • Fixed minor warning errors when checking URLs for cronjob requests
Location:
ose-firewall/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ose-firewall/trunk/assets/config/uri.php

    r1387925 r1504184  
    407407        $encodedParts = parse_url($encodedURL);
    408408        // Now, decode each value of the resulting array
    409         foreach ($encodedParts as $key => $value)
    410         {
    411             $result[$key] = urldecode($value);
    412         }
     409        if (!empty($encodedParts)) {
     410            foreach ($encodedParts as $key => $value)
     411            {
     412                $result[$key] = urldecode($value);
     413            }
     414        }
    413415        return $result;
    414416    }
  • ose-firewall/trunk/ose_firewall_badge.php

    r1496577 r1504184  
    44   Description: Plugin For Showing Centrora Security Badge
    55   Author: Centrora Security
    6    Version: 6.5.11
     6   Version: 6.5.12
    77*/ 
    88//include(dirname(__FILE__).'/includes/oseBadgeWidget.php');
  • ose-firewall/trunk/ose_wordpress_firewall.php

    r1496577 r1504184  
    55Description: Centrora Security (previously OSE Firewall) - A WordPress Security Firewall plugin created by Centrora. Protect your WordPress site by identify any malicious codes, spam, virus, SQL injection, and security vulnerabilities.
    66Author: Centrora (Previously ProWeb)
    7 Version: 6.5.11
     7Version: 6.5.12
    88Author URI: http://www.centrora.com/
    99*/
  • ose-firewall/trunk/readme.txt

    r1496577 r1504184  
    66Requires at least: 3.7
    77Tested up to: 4.5.2
    8 Stable tag: 6.5.11
     8Stable tag: 6.5.12
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    164164
    165165== Changelog ==
     166
     167= 6.5.12 =
     168* Fixed minor warning errors when checking URLs for cronjob requests
    166169
    167170= 6.5.11 =
Note: See TracChangeset for help on using the changeset viewer.