Ignore:
Timestamp:
Mar 10, 2013, 2:16:32 AM (11 years ago)
Author:
Eric
Message:

Next version is 2.5.0 :

  • Compliance with Piwigo 2.5
  • Core code refactory : Plugin's configuration vars are now serialized in database
  • Admin panel refactory : No more tabs
  • Admin panel refactory : Clear and dark administration theme compatibility
  • English language reference review and improved
  • Compliance improved with FluxBB 1.5 - Register_FluxBB is still compatible with 1.2 and 1.4 FluxBB forums
  • Update tr_TR, thanks to : LazBoy
  • Update it_IT, thanks to : Ericnet
  • Update pl_PL, thanks to : K.S.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Register_FluxBB/include/constants.php

    r17457 r21424  
    33global $prefixeTable, $conf;
    44
    5 $conf_Register_FluxBB = isset($conf['Register_FluxBB']) ? explode(";" , $conf['Register_FluxBB']) : array();
     5$conf_Register_FluxBB = unserialize($conf['Register_FluxBB']);
    66
    77define('Register_FluxBB_ID_TABLE', $prefixeTable.'Register_FluxBB_id');
     8define('FluxBB_CONFIG_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'config');
     9define('FluxBB_USERS_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'users');
     10define('FluxBB_POSTS_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'posts');
     11define('FluxBB_TOPICS_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'topics');
     12define('FluxBB_SUBSCRIPTIONS_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'topic_subscriptions');
    813
    9 if (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 }
    1714?>
Note: See TracChangeset for help on using the changeset viewer.