phpBB 3.3.12-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: 191
Joined: Thu Sep 09, 2010 11:36 am
Location: Munich, Germany

phpBB 3.3.12-RC1 released

Post by Marc »

Release highlights
  • Notable Improvements
    • Handling of multiple submitting of same post: PHPBB3-17077
    • Improved queries for unanswered topics and posts: PHPBB3-17305
    • Increase readability of error MySQL error messages in PHP 8.1+: PHPBB3-17232
  • Notable Changes
    • Update DOM handling in posts for better compatibility with PHP 8.3: PHPBB3-17236
  • Notable Bugfixes
    • Improve handling of web root path to support PHPBB_USE_BOARD_URL_PATH in extensions: PHPBB3-17207
    • Update issue when YouTube profilefield does not exist PHPBB3-17208
    • Prevent unexpected reparsing of URLs as magic URLs in posts: PHPBB3-17130
    • Missing update of user pass change time during password reset: PHPBB3-17302
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
Marc
Development Team Leader
Development Team Leader
Posts: 191
Joined: Thu Sep 09, 2010 11:36 am
Location: Munich, Germany

phpBB 3.3.12-RC1 released Event changes

Post by Marc »

Event changes

PHP Events
  • None

Template Events
  • ucp_footer_content_after
    Prosilver Placement: ucp_footer.html
    Added in Release: 3.3.12-RC1
    Explanation: Add optional elements after tab panels content in UCP
  • ucp_header_content_before
    Prosilver Placement: ucp_header.html
    Added in Release: 3.3.12-RC1
    Explanation: Add optional elements before tab panels content in UCP
  • ucp_notifications_content_after
    Prosilver Placement: ucp_notifications.html
    Added in Release: 3.3.12-RC1
    Explanation: Add optional elements after UCP notification options tab content
  • ucp_notifications_content_before
    Prosilver Placement: ucp_notifications.html
    Added in Release: 3.3.12-RC1
    Explanation: Add optional elements before UCP notification options tab content
  • ucp_notifications_form_after
    Prosilver Placement: ucp_notifications.html
    Added in Release: 3.3.12-RC1
    Explanation: Add optional elements after HTMP form in UCP notification options tab
  • ucp_notifications_form_before
    Prosilver Placement: ucp_notifications.html
    Added in Release: 3.3.12-RC1
    Explanation: Add optional elements before HTMP form in UCP notificationoptions tab
  • viewtopic_body_online_list_after
    Prosilver Placement: viewtopic_body.html
    Added in Release: 3.3.12-RC1
    Explanation: Add content after the online users list

ACP Template Events
  • None

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

Re: phpBB 3.3.12-RC1 released

Post by SpIdErPiGgY »

Full update, everything good. Just 2 errors on install

Code: Select all

[phpBB Debug] "Constant PHPBB_INSTALLED already defined" in file /var/www/vhosts/myarea51secrets.com/httpdocs/config.php on line 14
[phpBB Debug] "Constant PHPBB_ENVIRONMENT already defined" in file /var/www/vhosts/myarea51secrets.com/httpdocs/config.php on line 15
Updated from 3.3.11

MySQL(i) 10.11.7-MariaDB-1:10.11.7+maria~deb10
PHP 8.3.6
Last edited by SpIdErPiGgY on Mon May 13, 2024 12:27 pm, edited 1 time in total.

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

Re: phpBB 3.3.12-RC1 released

Post by Fred Rimbert »

Updated using the Changed Files method, without any problems.
Upgrading to PHP version 8.3

Updated from 3.3.11

Capture d’écran 2024-05-13 à 08.22.28.png


Thanks for the work

User avatar
Kirk
Registered User
Posts: 17
Joined: Mon Dec 23, 2019 7:43 pm

Re: phpBB 3.3.12-RC1 released

Post by Kirk »

Hi
Question, in the Prosilver changes in the content.css the following is entered:

Code: Select all

table.fixed-width-table {

 	font-size: 1.3em;

 }
In the content.css of 3.3.12-RC1 this is entered:

Code: Select all

table.fixed-width-table {

	table-layout: fixed;

}
What is correct now?
I have downloaded from package archive and for the Area51 downloads page.

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

Re: phpBB 3.3.12-RC1 released

Post by Fred Rimbert »

Kirk wrote: Fri May 17, 2024 7:37 am What is correct now?
For 3.3.12-RC1 you have to modify like this

Code: Select all

table.fixed-width-table {
	font-size: 1.3em;
}

User avatar
Kirk
Registered User
Posts: 17
Joined: Mon Dec 23, 2019 7:43 pm

Re: phpBB 3.3.12-RC1 released

Post by Kirk »

It is in the prosilver/theme/content.css of 3.3.12-RC1 this is entered:

Code: Select all

table.fixed-width-table {

	table-layout: fixed;

}
The change has not yet been inserted.
I think 1.3em too big, better 1.1em

User avatar
Marc
Development Team Leader
Development Team Leader
Posts: 191
Joined: Thu Sep 09, 2010 11:36 am
Location: Munich, Germany

Re: phpBB 3.3.12-RC1 released

Post by Marc »

No, there was no change there and it's only shown as a helper to find the correct section by the diff. The only change is changing this:

Code: Select all

.group-description ul {
{
 	list-style-position: inside;
 }
to this:

Code: Select all

.group-description ol, .group-description ul {
 	list-style-position: inside;
 }

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

Re: phpBB 3.3.12-RC1 released

Post by Fred Rimbert »

I think I understand the source of confusion

Image

Post Reply