diff --git a/build/build.xml b/build/build.xml index 1247ee421e..ba7e8c2920 100644 --- a/build/build.xml +++ b/build/build.xml @@ -3,7 +3,7 @@ - + diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 9c77bbcece..9185ec6a55 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -50,6 +50,7 @@
  1. Changelog
      +
    • Changes since 3.2.10-RC1
    • Changes since 3.2.9
    • Changes since 3.2.9-RC1
    • Changes since 3.2.8
    • @@ -143,6 +144,16 @@
      +

      Changes since 3.2.10-RC1

      +

      Bug

      +
        +
      • [PHPBB3-16505] - PHP debug warning while using \phpbb\language\language\lang_array() function
      • +
      • [PHPBB3-16507] - White page when searching users' posts
      • +
      • [PHPBB3-16508] - Whois not working for IPv6 addresses
      • +
      • [PHPBB3-16510] - Missing rows in config table on new install
      • +
      • [PHPBB3-16511] - Fatal error when deleting user in ACP
      • +
      +

      Changes since 3.2.9

      Bug

        diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index 58de5ab0de..35ce73a424 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -1470,13 +1470,11 @@ function user_ipwhois($ip) $ipwhois = ''; - // Limit the query to all possible flags (whois.arin.net) - $ip = 'z ' . $ip; - if (($fsk = @fsockopen($whois_host, 43))) { // CRLF as per RFC3912 - fputs($fsk, "$ip\r\n"); + // Z to limit the query to all possible flags (whois.arin.net) + fputs($fsk, "z $ip\r\n"); while (!feof($fsk)) { $ipwhois .= fgets($fsk, 1024); diff --git a/phpBB/install/phpbbcli.php b/phpBB/install/phpbbcli.php index 94f5c6296e..2afe776f85 100755 --- a/phpBB/install/phpbbcli.php +++ b/phpBB/install/phpbbcli.php @@ -23,7 +23,7 @@ if (php_sapi_name() !== 'cli') define('IN_PHPBB', true); define('IN_INSTALL', true); define('PHPBB_ENVIRONMENT', 'production'); -define('PHPBB_VERSION', '3.2.10-RC1'); +define('PHPBB_VERSION', '3.2.10-RC2'); $phpbb_root_path = __DIR__ . '/../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); diff --git a/phpBB/phpbb/db/migration/data/v32x/v3210rc2.php b/phpBB/phpbb/db/migration/data/v32x/v3210rc2.php new file mode 100644 index 0000000000..13b8176912 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v32x/v3210rc2.php @@ -0,0 +1,37 @@ + +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\db\migration\data\v32x; + +class v3210rc2 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return phpbb_version_compare($this->config['version'], '3.2.10-RC2', '>='); + } + + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v32x\font_awesome_update_cdn_fix_depends_on', + '\phpbb\db\migration\data\v32x\v3210rc1', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.2.10-RC2')), + ); + } +}