mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-30 19:49:54 +02:00
- fix some convertor bugs.
- added support for the validated birthday mod and fixed the integration of nils' birthday mod git-svn-id: file:///svn/phpbb/trunk@6851 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -142,12 +142,19 @@ $test_file = 'modcp.php';
|
||||
if (!$get_info)
|
||||
{
|
||||
// Test to see if the birthday MOD is installed on the source forum
|
||||
// @todo Check the relevant MODs - I believe there are 2 that add this, but am not sure if their data is compatible or not
|
||||
// Nils' birthday mod
|
||||
if (get_config_value('birthday_required') !== false)
|
||||
{
|
||||
define('MOD_BIRTHDAY', true);
|
||||
}
|
||||
|
||||
// TerraFrost's validated birthday mod
|
||||
if (get_config_value('bday_required') !== false)
|
||||
{
|
||||
define('MOD_BIRTHDAY', true);
|
||||
define('MOD_BIRTHDAY_TERRA', true);
|
||||
}
|
||||
|
||||
// Test to see if the attachment MOD is installed on the source forum
|
||||
// If it is, we will convert this data as well
|
||||
$db->sql_return_on_error(true);
|
||||
|
Reference in New Issue
Block a user