Page 1 of 1

[Solved] Error Message when board is disabled

PostPosted: Sat Aug 12, 2006 4:42 pm
Author: Angelus
Hi if I disable my board to make a backup I get some strange error messages:

[flash=,:1ck47b3g]http://www.world-of-miniatures.de/bilder/integra/board_deaktiviert.jpg[/flash:1ck47b3g]


Anyone else with this problem? I run a 1.4.0 with 2.0.19 phpbb.

I had to make a screenshot because I have no rights for right-click or copy when board is disabled ?!?

Greetings
Thorsten

Re: Error Message when board is disabled

PostPosted: Mon Aug 14, 2006 8:30 am
Author: IntegraTeam
includes/functions.php line 1096
Find
Code: Select all
 return ( $board_config['default_lang'] == 'english' ) ? date($format,$time) ]) ;
REPLACE WITH
Code: Select all
 return ( $board_config['default_lang'] == 'english' || !is_array($lang['datetime']) ) ? date($format,$time) ]) ;

Re: Error Message when board is disabled

PostPosted: Mon Aug 14, 2006 9:35 am
Author: Angelus
Thanks works.

Greetings
Thorsten

PostPosted: Mon Aug 14, 2006 1:43 pm
Author: Michaelo
Have used this fix in 1.4.1 Beta to see if it also repairs the same error there.