Discuss: phpBB 3.3.12 Release

Do not post support requests, bug reports or feature requests. Discuss phpBB here. Non-phpBB related discussion goes in General Discussion!
Get Involved
HB
Registered User
Posts: 230
Joined: Mon May 16, 2005 9:30 pm

Re: Discuss: phpBB 3.3.12 Release

Post by HB »

ssl wrote: Sun Jun 02, 2024 6:23 am Have a look here: https://www.phpbb.com/support/docs/en/3 ... meoutquot/
Thanks! The error was in include/diff/diff.php, which has been corrected in the 3.3.12 release; here's the change:

FIND:

Code: Select all

				// We can simplify one case where the array is usually supposed to be empty...
				if (count($orig) == 1 && trim($orig[0]) === '') $orig = array();
				if (count($final) == 1 && trim($final[0]) === '') $final = array();
REPLACE WITH:

Code: Select all

                // We can simplify one case where the array is usually supposed to be empty...
                if (is_array($orig) && count($orig) == 1 && trim($orig[0]) === '')
                {
                    $orig = array();
                }
                if (is_array($final) && count($final) == 1 && trim($final[0]) === '')
                {
                    $final = array();
                }
The "timeout detected" error message should link that KB article. I've open up a suggestion bug report here. Thanks again!
Dan Kehn
User avatar
softlight
Registered User
Posts: 16
Joined: Mon May 03, 2010 10:39 pm
Location: UK

Re: Discuss: phpBB 3.3.12 Release

Post by softlight »

I'm still running 3.3.10.
Will it be OK to update with 3.3.12?
I've not had to skip an update before.
User avatar
Kailey
Community Team Leader
Community Team Leader
Posts: 3886
Joined: Mon Sep 01, 2014 1:00 am
Location: sudo rm -rf /
Name: Kailey Snay

Re: Discuss: phpBB 3.3.12 Release

Post by Kailey »

I ran into 1 HUNK file (I use the patch files for various reasons). The file was /styles/prosilver/theme/stylesheet.css, which was caused by this. Otherwise, no issues to report.
softlight wrote: Mon Jun 03, 2024 3:03 am I'm still running 3.3.10.
Will it be OK to update with 3.3.12?
You should be fine.
Kailey Snay - Community Team Leader
Knowledge Base | Documentation | Community rules
If you have any questions about the rules/customs of this website, feel free to send me a PM.

My little corner of the world | Administrator @ phpBB Modders
User avatar
softlight
Registered User
Posts: 16
Joined: Mon May 03, 2010 10:39 pm
Location: UK

Re: Discuss: phpBB 3.3.12 Release

Post by softlight »

Kailey wrote: Mon Jun 03, 2024 10:31 am
softlight wrote: Mon Jun 03, 2024 3:03 am I'm still running 3.3.10.
Will it be OK to update with 3.3.12?
You should be fine.
Thank you, I have the new package now and will attempt to update it at the weekend. I'll throw away the 3.3.11 package I've held for a couple of weeks.
User avatar
ssl
Registered User
Posts: 1979
Joined: Sat Feb 08, 2020 2:15 pm
Location: Le Lude, Pays de la Loire - France
Name: Fred Rimbert

Re: Discuss: phpBB 3.3.12 Release

Post by ssl »

If you have any doubts about how to proceed with this update, open a topic on the support board instead of rushing in head first and making stupid mistakes.
Sorry for my English ... I do my best! :anger_right:

:point_right_tone3: phpBB: 3.3.13 | PHP: 8.3.9
:point_right_tone4: [Kill spam on phpBB] - [Some French translation of extensions]
"Mistress, Mistress someone is bothering me in pm"
User avatar
Tommy Herrmann
Registered User
Posts: 30
Joined: Sat May 01, 2021 2:17 am
Location: Berlin - Germany

Re: Discuss: phpBB 3.3.12 Release

Post by Tommy Herrmann »

Hello Team,

after completing the German translation yesterday, I successfully installed v3.3.12 without any issues.

Thank you for your professional work.
User avatar
Madalin10
Registered User
Posts: 102
Joined: Wed Jun 18, 2014 2:42 pm
Name: Madalin C.

Re: Discuss: phpBB 3.3.12 Release

Post by Madalin10 »

Upgraded from 3.3.11 to 3.3.12 for some clients, and from 3.2.9 to 3.3.12 and had no issues with the upgrade process. Props to dev team for this release! :)
https://awesome-web.design - I offer phpBB & web design services at fair prices.
User avatar
invenio
Registered User
Posts: 397
Joined: Wed Dec 09, 2015 1:45 pm
Location: New Hampshire, USA

Re: Discuss: phpBB 3.3.12 Release

Post by invenio »

Another easy clean upgrade. Thank you developers.
User avatar
SpIdErPiGgY
Registered User
Posts: 273
Joined: Sun May 02, 2021 2:11 pm
Location: Erpe-Mere, Aalst, BE
Name: Andy Dm

Re: Discuss: phpBB 3.3.12 Release

Post by SpIdErPiGgY »

I see this in Firefox inspector

Code: Select all

Uncaught SyntaxError: expected expression, got keyword 'const'
/template/ajax.js

Code: Select all

// Prevent accidental double submission of form
+$('[data-prevent-flood] input[type=submit]').click(function(event) {
+	const $submitButton = $(this); // Store the button element
+	const $form = $submitButton.closest('form');
phpBB NL Extension translations, also on request.
--> Click Here: Myarea51secrets.com <--
User avatar
GanstaZ
Registered User
Posts: 1213
Joined: Wed Oct 11, 2017 10:29 pm
Location: GZOverse

Re: Discuss: phpBB 3.3.12 Release

Post by GanstaZ »

Got an error while updating from 3.3.10 to 3.3.12:
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 444: Undefined array key "user_last_active"

Other than that, all seems good)
Usus est magister optimus! phpBB pre-Triton & latest php environment.
When answer lies in the question, question becomes redundant!
User avatar
SpIdErPiGgY
Registered User
Posts: 273
Joined: Sun May 02, 2021 2:11 pm
Location: Erpe-Mere, Aalst, BE
Name: Andy Dm

Re: Discuss: phpBB 3.3.12 Release

Post by SpIdErPiGgY »

SpIdErPiGgY wrote: Sun Jun 30, 2024 5:35 am I see this in Firefox inspector

Code: Select all

Uncaught SyntaxError: expected expression, got keyword 'const'
/template/ajax.js

Code: Select all

// Prevent accidental double submission of form
+$('[data-prevent-flood] input[type=submit]').click(function(event) {
+	const $submitButton = $(this); // Store the button element
+	const $form = $submitButton.closest('form');
Nevermind. I forgot to update ajax.js :oops: :oops:
phpBB NL Extension translations, also on request.
--> Click Here: Myarea51secrets.com <--

Return to “phpBB Discussion”