diff --git a/build/build.xml b/build/build.xml index 398d2eab05..aa35381650 100644 --- a/build/build.xml +++ b/build/build.xml @@ -3,8 +3,8 @@ - - + + diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index b0e774b29e..37fe4a2cb5 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -50,6 +50,7 @@
  1. Changelog
      +
    • Changes since 3.3.11
    • Changes since 3.3.10
    • Changes since 3.3.10-RC1
    • Changes since 3.3.9
    • @@ -167,6 +168,51 @@
      +

      Changes since 3.3.11

      +

      Bug

      +
        +
      • [PHPBB3-14047] - Jabber discards messages when stream gets closed without waiting for acknowledgement
      • +
      • [PHPBB3-15325] - Global moderator permissions shown in forum moderator permissions
      • +
      • [PHPBB3-16470] - Memberlist bug - sorting by Last active date is incorrect
      • +
      • [PHPBB3-17077] - Multiple posts at once, even if the user shouldn't ignore the flood interval
      • +
      • [PHPBB3-17117] - Deactivated notification method leads to crash
      • +
      • [PHPBB3-17130] - Text reparser changes magic URL state in posts
      • +
      • [PHPBB3-17187] - Unread Topic URL Link Not Working On MCP View Forum Topic List
      • +
      • [PHPBB3-17200] - Color Parse Error In viewonline.php Legend
      • +
      • [PHPBB3-17201] - Redirect to installer might be invalid when accessing subfolder
      • +
      • [PHPBB3-17202] - The bidi.css File Is Loaded When Viewing LTR Topic Print View Page
      • +
      • [PHPBB3-17203] - Group Description With BBCode Ordered List Breaks Layout
      • +
      • [PHPBB3-17207] - Extensions are unable to use PHPBB_USE_BOARD_URL_PATH
      • +
      • [PHPBB3-17208] - Update Error YouTube Profilfeld
      • +
      • [PHPBB3-17212] - Who is online incorrectly reports page when posting with only post URL parameter
      • +
      • [PHPBB3-17237] - QUICKMOD_ACTION_NOT_ALLOWED uses " instead of '
      • +
      • [PHPBB3-17286] - Non-existent urls to be written down to session_page
      • +
      • [PHPBB3-17292] - Link to spamhaus.org no longer valid
      • +
      • [PHPBB3-17296] - mod_security false positive denies access to ACP
      • +
      • [PHPBB3-17302] - Password reset function does not update all necessary data
      • +
      • [PHPBB3-17306] - Wrong declaration of function input values
      • +
      +

      Improvement

      +
        +
      • [PHPBB3-17230] - Update doctum for PHP 8.1 support
      • +
      • [PHPBB3-17232] - Improve MySQL error messages in PHP 8.1+
      • +
      • [PHPBB3-17233] - Add PHP 8.3 tests to the 3.3.x branch
      • +
      • [PHPBB3-17235] - Missing autocomplete for username & password
      • +
      • [PHPBB3-17236] - Update symfony dependencies to improve PHP 8.3 compatibility
      • +
      • [PHPBB3-17277] - Add template events to UCP
      • +
      • [PHPBB3-17284] - Add event to add content after the online users list in viewtopic
      • +
      • [PHPBB3-17293] - Update composer and dependencies to latest versions
      • +
      • [PHPBB3-17299] - Allow core event to modify variables while sending email
      • +
      • [PHPBB3-17303] - Update jQuery to 3.7+
      • +
      • [PHPBB3-17305] - Improve queries for unanswered topics and posts
      • +
      • [PHPBB3-17310] - Update GitHub actions workflows to Node.js 20
      • +
      +

      Task

      +
        +
      • [PHPBB3-17204] - Update composer and node dependencies
      • +
      • [PHPBB3-17280] - Fallback to branch name on branches without ticket ID
      • +
      +

      Changes since 3.3.10

      Bug

        diff --git a/phpBB/phpbb/db/migration/data/v33x/v3312rc1.php b/phpBB/phpbb/db/migration/data/v33x/v3312rc1.php new file mode 100644 index 0000000000..77247b96f2 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v33x/v3312rc1.php @@ -0,0 +1,36 @@ + + * @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\v33x; + +class v3312rc1 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return version_compare($this->config['version'], '3.3.12-RC1', '>='); + } + + public static function depends_on() + { + return [ + '\phpbb\db\migration\data\v33x\jquery_update_v3', + ]; + } + + public function update_data() + { + return [ + ['config.update', ['version', '3.3.12-RC1']], + ]; + } +} diff --git a/phpBB/styles/prosilver/theme/stylesheet.css b/phpBB/styles/prosilver/theme/stylesheet.css index 3a5142e4b5..3eccff693e 100644 --- a/phpBB/styles/prosilver/theme/stylesheet.css +++ b/phpBB/styles/prosilver/theme/stylesheet.css @@ -10,14 +10,14 @@ @import url("normalize.css?hash=e6c08715"); @import url("base.css?hash=9b6738c8"); @import url("utilities.css?hash=b95e1ad4"); -@import url("icons.css?hash=2abef5d2"); -@import url("common.css?hash=658f990b"); -@import url("buttons.css?hash=eb16911f"); -@import url("links.css?hash=5fec3654"); +@import url("icons.css?hash=8acd6188"); +@import url("common.css?hash=0aba47c9"); +@import url("buttons.css?hash=a034a326"); +@import url("links.css?hash=93969a21"); @import url("mentions.css?hash=308fbc69"); -@import url("content.css?hash=f87d22a8"); -@import url("cp.css?hash=73c6f37d"); -@import url("forms.css?hash=5e06dbba"); -@import url("colours.css?hash=f8757b6c"); -@import url("responsive.css?hash=78159a5e"); -@import url("bidi.css?hash=95928a4f"); +@import url("content.css?hash=c0febad3"); +@import url("cp.css?hash=b02034ec"); +@import url("forms.css?hash=d6ca85f9"); +@import url("colours.css?hash=0d8bc6be"); +@import url("responsive.css?hash=749e01e6"); +@import url("bidi.css?hash=c1b99d9a");