Changeset 94 for trunk/docs


Ignore:
Timestamp:
Apr 15, 2006 12:20:47 AM (18 years ago)
Author:
scdev
Message:

Q - changed how include path is defined.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/example_config.inc.php

    r93 r94  
    2424
    2525// Set include path for all tempates.
    26 ini_set('include_path', get_include_path()
    27     . PATH_SEPARATOR . COMMON_BASE
    28     . PATH_SEPARATOR . SITE_BASE . '/_templates'
    29 );
     26ini_set('include_path', join(PATH_SEPARATOR, array(
     27    COMMON_BASE,
     28    SITE_BASE . '/_templates',
     29    get_include_path()
     30)));
    3031
    3132// Include core libraries.
Note: See TracChangeset for help on using the changeset viewer.