source: extensions/Register_FluxBB/trunk/include/constants.php @ 8975

Last change on this file since 8975 was 8975, checked in by Eric, 13 years ago

bug 2154 fixed : bad fluxbb table name reference

  • Property svn:eol-style set to LF
File size: 619 bytes
Line 
1<?php
2
3global $prefixeTable, $conf;
4
5$conf_Register_FluxBB = isset($conf['Register_FluxBB']) ? explode(";" , $conf['Register_FluxBB']) : array();
6
7define('Register_FluxBB_ID_TABLE', $prefixeTable.'Register_FluxBB_id');
8
9if (isset($conf_Register_FluxBB[0]))
10{
11  define('FluxBB_CONFIG_TABLE', $conf_Register_FluxBB[0].'config');
12  define('FluxBB_USERS_TABLE', $conf_Register_FluxBB[0].'users');
13  define('FluxBB_POSTS_TABLE', $conf_Register_FluxBB[0].'posts');
14  define('FluxBB_TOPICS_TABLE', $conf_Register_FluxBB[0].'topics');
15  define('FluxBB_SUBSCRIPTIONS_TABLE', $conf_Register_FluxBB[0].'topic_subscriptions');
16}
17?>
Note: See TracBrowser for help on using the repository browser.