diff --git a/build/build.xml b/build/build.xml index 6b646af70b..fd3593b69d 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 d52a9d3c98..982dd5cf60 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -96,6 +96,11 @@

1.i. Changes since 3.0.12

+

Security

+
    +
  • [PHPBB3-13531] - Disallow trailing paths (e.g. using the PATH_INFO feature) to prevent path-relative CSS injection
  • +
  • [PHPBB3-13526] - Correctly validate ucp_pm_options form key
  • +

Bug

  • [PHPBB3-6703] - Problem with russian letter while converting from 2.0.x
  • @@ -177,7 +182,6 @@
  • [PHPBB3-13376] - deregister_globals() does not work correctly when $_COOKIE['GLOBALS'] - is specified
  • [PHPBB3-13519] - Correctly validate imagick path as path and not string
  • [PHPBB3-13523] - PHP 5.2 Unit Tests no longer work due to deprecated PHPUnit PEAR channel
  • -
  • [PHPBB3-13526] - Correctly validate ucp_pm_options form key
  • [PHPBB3-13527] - Escape information received from version server

Improvement

@@ -200,7 +204,6 @@
  • [PHPBB3-12247] - include poster's username in email notifications of posts that get approved by moderators
  • [PHPBB3-12259] - Too many redundant tests are run on Travis
  • [PHPBB3-12468] - Allow mbstring.http_input='' besides 'pass' for PHP 5.6 compatibility
  • -
  • [PHPBB3-13531] - Disallow trailing paths (e.g. using the PATH_INFO feature)
  • Task

      diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 8e5b5969ad..5c0ead437d 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1013,6 +1013,8 @@ function database_update_info() '3.0.12-RC3' => array(), // No changes from 3.0.12 to 3.0.13-RC1 '3.0.12' => array(), + // No changes from 3.0.13-RC1 to 3.0.13 + '3.0.13-RC1' => array(), /** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.14-RC1 */ ); @@ -2260,6 +2262,10 @@ function change_database_data(&$no_updates, $version) // No changes from 3.0.12 to 3.0.13-RC1 case '3.0.12': break; + + // No changes from 3.0.13-RC1 to 3.0.13 + case '3.0.13-RC1': + break; } }