phpBB 3.3.14-RC1 released

General discussion of development ideas and the approaches taken in the 3.x branch of phpBB. The current feature release of phpBB 3 is 3.3/Proteus.
Forum rules
Please do not post support questions regarding installing, updating, or upgrading phpBB 3.3.x. If you need support for phpBB 3.3.x please visit the 3.3.x Support Forum on phpbb.com.

If you have questions regarding writing extensions please post in Extension Writers Discussion to receive proper guidance from our staff and community.
Post Reply
User avatar
Marc
Development Team Leader
Development Team Leader
Posts: 195
Joined: Thu Sep 09, 2010 11:36 am
Location: Munich, Germany

phpBB 3.3.14-RC1 released

Post by Marc »

Release highlights
  • Notable Improvements
    • Distinct disabled and not installed extensions in ACP: PHPBB-17359
    • Support force reparsing BBCodes via CLI: PHPBB-17402
  • Notable Bugfixes
The packages can be downloaded from our package archive or the Area51 downloads page. Please test the packages to extent, so we can have a fail-safe final release.

User avatar
P_I
Community Team
Community Team
Posts: 146
Joined: Fri Oct 31, 2014 4:56 am

Re: phpBB 3.3.14-RC1 released

Post by P_I »

Full package update tested on a local copy of one of my 3.3.13 boards. Ubuntu 24.04 server running PHP 8.3.6. Sanity testing all okay.

Working on testing some of the above fixes as well as https://tracker.phpbb.com/browse/PHPBB-17390 which has been annoying my moderating team.

User avatar
SpIdErPiGgY
Registered User
Posts: 7
Joined: Sun May 02, 2021 2:24 pm

Re: phpBB 3.3.14-RC1 released

Post by SpIdErPiGgY »

Updated without a problem 😊
Last edited by SpIdErPiGgY on Wed Oct 23, 2024 12:03 pm, edited 1 time in total.
phpBB NL Extension translations, also on request.
--> Click Here: phpbbextnl.be <--


Support my translations: https://paypal.me/myarea51secrets

User avatar
Fred Rimbert
Registered User
Posts: 10
Joined: Tue Sep 05, 2023 9:33 pm

Re: phpBB 3.3.14-RC1 released

Post by Fred Rimbert »

Updated last night on my test board, using the modified files package. No concerns to report.
I like the new indication of returning to the quoted message, and thank you also for the classification of available and disabled extensions in the ACP.

Thanks to the phpBB team

User avatar
Fred Rimbert
Registered User
Posts: 10
Joined: Tue Sep 05, 2023 9:33 pm

Re: phpBB 3.3.14-RC1 released

Post by Fred Rimbert »

Fred Rimbert wrote: Wed Oct 23, 2024 11:30 am I like the new indication of returning to the quoted message
It's regrettable not to have fully exploited the solution proposed by Gumboots regarding the citation arrow: https://www.phpbb.com/community/viewtopic.php?t=2655505

Use the title="" function to display what this arrow does

Open ./language/en/common.php

Find

Code: Select all

'JUMP_TO_PAGE'			=> 'Jump to page',
Add after

Code: Select all

'GO_TO_POST'			  => 'Go to the post',

Open ./styles/prosilver/template/bbcode.html

Find

Code: Select all

<a href="{@post_url}"
Replace by

Code: Select all

<a href="{@post_url}" title="{L_GO_TO_POST}"

Find

Code: Select all

<a href="{@msg_url}"
Replace by

Code: Select all

<a href="{@msg_url}" title="{L_GO_TO_POST}"

Post Reply