Pagina 1 van 1

phpBB 3.0.4 uitgebracht

Geplaatst: 13 dec 2008, 01:44
door Tom V
Acyd burn heeft gisteren rond middernacht namens de phpBB groep phpBB3.0.4 uitgebracht.
Deze versie lost enkele bugs op van 3.0.3, enkele kleine problemen, 2 veiligheidsbugs en verhoogd de prestatie aanzienlijk.
Zoals gewoonlijk zijn alle wijzigingen op phpBB.com te bekijken.

Verder raden we ook aan om zo snel mogelijk te updaten naar de nieuwste versie van phpBB.

Downloads
De Nederlandstalige downloads zijn geüpdatet en te downloaden via http://phpBB.nl/downloads
  • volledig pakket
  • automatisch updaten
  • code veranderingen (taal en template wijzigingen)
  • gewijzigde bestanden
  • patch bestand
Namens phpBB.nl én phpBB.com, ontzettend veel plezier met deze nieuwe release van phpBB3.

Re: phpBB 3.0.4 uitgebracht

Geplaatst: 13 dec 2008, 01:44
door Tom V
Vorige keer heeft phpBB.nl een bug gefixed in de downloads van phpBB3.0.3.
Indien je nu wilt updaten via het patch bestand zal je hoogst waarschijnlijk een foutmelding krijgen.
Om dit probleem op te lossen moet je het volgende verwijderen uit het patch bestand:

Code: Selecteer alles

***************
*** 2400,2406 ****
              {
                  // Check if there are more occurrences of % than arguments, if there are we fill out the arguments array
                  // It doesn't matter if we add more arguments than placeholders
!                 if (substr_count($log[$i]['action'], '%') - sizeof($log_data_ary))
                  {
                      $log_data_ary = array_merge($log_data_ary, array_fill(0, substr_count($log[$i]['action'], '%') - sizeof($log_data_ary), ''));
                  }
--- 2400,2406 ----
              {
                  // Check if there are more occurrences of % than arguments, if there are we fill out the arguments array
                  // It doesn't matter if we add more arguments than placeholders
!                 if ((substr_count($log[$i]['action'], '%') - sizeof($log_data_ary)) > 0)
                  {
                      $log_data_ary = array_merge($log_data_ary, array_fill(0, substr_count($log[$i]['action'], '%') - sizeof($log_data_ary), ''));
                  }