Plugin Directory

Changeset 3036535


Ignore:
Timestamp:
02/15/2024 07:03:04 PM (22 months ago)
Author:
wfryan
Message:

7.11.3 - February 15, 2024

  • Fix: Fixed an issue with sites containing invalid Wordfence Central site data where they could throw an error when viewing Wordfence pages
Location:
wordfence
Files:
130 added
130 deleted
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wordfence/tags/7.11.3/languages/wordfence.pot

    r3035814 r3036535  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Wordfence Security 7.11.2\n"
    6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wordfence-zip-75XahDE8M\n"
     5"Project-Id-Version: Wordfence Security 7.11.3\n"
     6"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wordfence-zip-tQodNPLDE\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    88"Language-Team: LANGUAGE <[email protected]>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-02-14T15:58:51+00:00\n"
     12"POT-Creation-Date: 2024-02-15T18:56:33+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.7.1\n"
  • wordfence/tags/7.11.3/lib/wfCentralAPI.php

    r3035814 r3036535  
    834834    public static function getCentralSiteUrl() {
    835835        $siteData = json_decode(wfConfig::get('wordfenceCentralSiteData', '[]'), true);
    836         return array_key_exists('site-url', $siteData) ? (string) $siteData['site-url'] : null;
     836        return (is_array($siteData) && array_key_exists('site-url', $siteData)) ? (string) $siteData['site-url'] : null;
    837837    }
    838838   
  • wordfence/tags/7.11.3/modules/login-security/wordfence-login-security.php

    r3035814 r3036535  
    2828   
    2929    define('WORDFENCE_LS_VERSION', '1.1.9');
    30     define('WORDFENCE_LS_BUILD_NUMBER', '1707926331');
     30    define('WORDFENCE_LS_BUILD_NUMBER', '1708023392');
    3131
    3232    define('WORDFENCE_LS_PLUGIN_BASENAME', plugin_basename(__FILE__));
  • wordfence/tags/7.11.3/readme.txt

    r3035814 r3036535  
    55Requires PHP: 5.5
    66Tested up to: 6.4
    7 Stable tag: 7.11.2
     7Stable tag: 7.11.3
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    189189
    190190== Changelog ==
     191
     192= 7.11.3 - February 15, 2024 =
     193* Fix: Fixed an issue with sites containing invalid Wordfence Central site data where they could throw an error when viewing Wordfence pages
    191194
    192195= 7.11.2 - February 14, 2024 =
  • wordfence/tags/7.11.3/wordfence.php

    r3035814 r3036535  
    55Description: Wordfence Security - Anti-virus, Firewall and Malware Scan
    66Author: Wordfence
    7 Version: 7.11.2
     7Version: 7.11.3
    88Author URI: http://www.wordfence.com/
    99Text Domain: wordfence
     
    3939    exit;
    4040}
    41 define('WORDFENCE_VERSION', '7.11.2');
    42 define('WORDFENCE_BUILD_NUMBER', '1707926331');
     41define('WORDFENCE_VERSION', '7.11.3');
     42define('WORDFENCE_BUILD_NUMBER', '1708023392');
    4343define('WORDFENCE_BASENAME', function_exists('plugin_basename') ? plugin_basename(__FILE__) :
    4444    basename(dirname(__FILE__)) . '/' . basename(__FILE__));
  • wordfence/trunk/languages/wordfence.pot

    r3035814 r3036535  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Wordfence Security 7.11.2\n"
    6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wordfence-zip-75XahDE8M\n"
     5"Project-Id-Version: Wordfence Security 7.11.3\n"
     6"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wordfence-zip-tQodNPLDE\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    88"Language-Team: LANGUAGE <[email protected]>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-02-14T15:58:51+00:00\n"
     12"POT-Creation-Date: 2024-02-15T18:56:33+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.7.1\n"
  • wordfence/trunk/lib/wfCentralAPI.php

    r3035814 r3036535  
    834834    public static function getCentralSiteUrl() {
    835835        $siteData = json_decode(wfConfig::get('wordfenceCentralSiteData', '[]'), true);
    836         return array_key_exists('site-url', $siteData) ? (string) $siteData['site-url'] : null;
     836        return (is_array($siteData) && array_key_exists('site-url', $siteData)) ? (string) $siteData['site-url'] : null;
    837837    }
    838838   
  • wordfence/trunk/modules/login-security/wordfence-login-security.php

    r3035814 r3036535  
    2828   
    2929    define('WORDFENCE_LS_VERSION', '1.1.9');
    30     define('WORDFENCE_LS_BUILD_NUMBER', '1707926331');
     30    define('WORDFENCE_LS_BUILD_NUMBER', '1708023392');
    3131
    3232    define('WORDFENCE_LS_PLUGIN_BASENAME', plugin_basename(__FILE__));
  • wordfence/trunk/readme.txt

    r3035814 r3036535  
    189189
    190190== Changelog ==
     191
     192= 7.11.3 - February 15, 2024 =
     193* Fix: Fixed an issue with sites containing invalid Wordfence Central site data where they could throw an error when viewing Wordfence pages
    191194
    192195= 7.11.2 - February 14, 2024 =
  • wordfence/trunk/wordfence.php

    r3035814 r3036535  
    55Description: Wordfence Security - Anti-virus, Firewall and Malware Scan
    66Author: Wordfence
    7 Version: 7.11.2
     7Version: 7.11.3
    88Author URI: http://www.wordfence.com/
    99Text Domain: wordfence
     
    3939    exit;
    4040}
    41 define('WORDFENCE_VERSION', '7.11.2');
    42 define('WORDFENCE_BUILD_NUMBER', '1707926331');
     41define('WORDFENCE_VERSION', '7.11.3');
     42define('WORDFENCE_BUILD_NUMBER', '1708023392');
    4343define('WORDFENCE_BASENAME', function_exists('plugin_basename') ? plugin_basename(__FILE__) :
    4444    basename(dirname(__FILE__)) . '/' . basename(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.