Last change
on this file since 28017 was
21913,
checked in by Eric, 12 years ago
|
Next version is 2.5.3:
Bug fixed - MySql error after installation from scratch - Part 2 : Add controls on FluxBB table prefix
|
-
Property svn:eol-style set to
LF
|
File size:
706 bytes
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | global $prefixeTable, $conf; |
---|
4 | |
---|
5 | $conf_Register_FluxBB = unserialize($conf['Register_FluxBB']); |
---|
6 | |
---|
7 | define('Register_FluxBB_ID_TABLE', $prefixeTable.'Register_FluxBB_id'); |
---|
8 | |
---|
9 | if (isset($conf_Register_FluxBB['FLUXBB_PREFIX']) and $conf_Register_FluxBB['FLUXBB_PREFIX'] <> '') |
---|
10 | { |
---|
11 | define('FluxBB_CONFIG_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'config'); |
---|
12 | define('FluxBB_USERS_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'users'); |
---|
13 | define('FluxBB_POSTS_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'posts'); |
---|
14 | define('FluxBB_TOPICS_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'topics'); |
---|
15 | define('FluxBB_SUBSCRIPTIONS_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'topic_subscriptions'); |
---|
16 | } |
---|
17 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.