Changeset 5215 for trunk/install


Ignore:
Timestamp:
Mar 21, 2010, 2:31:20 PM (14 years ago)
Author:
patdenice
Message:

feature 1522: Move config_local.inc.php to local/config/config.inc.php

Location:
trunk/install
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/db/12-database.php

    r5196 r5215  
    3131include_once(PHPWG_ROOT_PATH.'include/constants.php');
    3232include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
    33 @include(PHPWG_ROOT_PATH. 'include/config_local.inc.php');
     33@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
    3434
    3535// +-----------------------------------------------------------------------+
  • trunk/install/db/14-database.php

    r5196 r5215  
    3131include_once(PHPWG_ROOT_PATH.'include/constants.php');
    3232include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
    33 @include(PHPWG_ROOT_PATH. 'include/config_local.inc.php');
     33@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
    3434
    3535// +-----------------------------------------------------------------------+
  • trunk/install/db/60-database.php

    r5196 r5215  
    3131include_once(PHPWG_ROOT_PATH.'include/constants.php');
    3232include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
    33 @include(PHPWG_ROOT_PATH. 'include/config_local.inc.php');
     33@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
    3434
    3535// +-----------------------------------------------------------------------+
  • trunk/install/db/65-database.php

    r5213 r5215  
    136136// get admin charset
    137137  include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
    138   @include(PHPWG_ROOT_PATH. 'include/config_local.inc.php');
     138  @include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
    139139  $admin_charset='iso-8859-1';
    140140  $query='
  • trunk/install/db/8-database.php

    r5196 r5215  
    4141$conf_save = $conf;
    4242unset($conf);
    43 @include(PHPWG_ROOT_PATH. 'include/config_local.inc.php');
     43@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
    4444if ( isset($conf['gallery_url']) )
    4545{
  • trunk/install/upgrade_1.4.0.php

    r5196 r5215  
    283283    $page['infos'],
    284284    'the thumbnail prefix configuration parameter was moved to configuration
    285 file, copy config_local.inc.php from "tools" directory to "include" directory
     285file, copy config.inc.php from "tools" directory to "local/config" directory
    286286and edit $conf[\'prefix_thumbnail\'] = '.$prefix_thumbnail
    287287    );
  • trunk/install/upgrade_1.5.0.php

    r5196 r5215  
    334334$conf_save = $conf;
    335335unset($conf);
    336 @include(PHPWG_ROOT_PATH. 'include/config_local.inc.php');
     336@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
    337337if ( isset($conf['gallery_url']) )
    338338{
Note: See TracChangeset for help on using the changeset viewer.