Author: acydburn
Date: Tue Sep 15 20:01:42 2009
New Revision: 10148
Log:
fix coppa setting in convertor (Bug #50735) - at the same time increase target phpBB version number for the phpBB2 convertor and convertor version number. ;)
Modified:
branches/phpBB-3_0_0/phpBB/install/convertors/convert_phpbb20.php
Modified: branches/phpBB-3_0_0/phpBB/install/convertors/convert_phpbb20.php
==============================================================================
*** branches/phpBB-3_0_0/phpBB/install/convertors/convert_phpbb20.php (original)
--- branches/phpBB-3_0_0/phpBB/install/convertors/convert_phpbb20.php Tue Sep 15 20:01:42 2009
***************
*** 31,38 ****
*/
$convertor_data = array(
'forum_name' => 'phpBB 2.0.x',
! 'version' => '1.0.2',
! 'phpbb_version' => '3.0.4',
'author' => '<a href="http://www.phpbb.com/">phpBB Group</a>',
'dbms' => $dbms,
'dbhost' => $dbhost,
--- 31,38 ----
*/
$convertor_data = array(
'forum_name' => 'phpBB 2.0.x',
! 'version' => '1.0.3',
! 'phpbb_version' => '3.0.6',
'author' => '<a href="http://www.phpbb.com/">phpBB Group</a>',
'dbms' => $dbms,
'dbhost' => $dbhost,
***************
*** 129,135 ****
'board_timezone' => 'board_timezone',
'allow_privmsg' => 'not(privmsg_disable)',
'gzip_compress' => 'gzip_compress',
! 'coppa_enable' => 'is_empty(coppa_mail)',
'coppa_fax' => 'coppa_fax',
'coppa_mail' => 'coppa_mail',
'record_online_users' => 'record_online_users',
--- 129,135 ----
'board_timezone' => 'board_timezone',
'allow_privmsg' => 'not(privmsg_disable)',
'gzip_compress' => 'gzip_compress',
! 'coppa_enable' => '!is_empty(coppa_mail)',
'coppa_fax' => 'coppa_fax',
'coppa_mail' => 'coppa_mail',
'record_online_users' => 'record_online_users',
|