diff --git a/build/build.xml b/build/build.xml index 7b1654b60a..82e8b952a8 100644 --- a/build/build.xml +++ b/build/build.xml @@ -4,7 +4,7 @@ - + diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index f237605e23..f8aba22e5d 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -54,6 +54,7 @@
  • Changes since 3.3.0-b2
  • Changes since 3.3.0-b1
  • Changes since 3.2.x
  • +
  • Changes since 3.2.10-RC1
  • Changes since 3.2.9
  • Changes since 3.2.9-RC1
  • Changes since 3.2.8
  • @@ -353,6 +354,16 @@
  • [PHPBB3-16185] - Use Xenial build environment on travis-ci
  • +

    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 b02e6f62f5..227868fa74 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -1464,13 +1464,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/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')), + ); + } +}