Changeset 114


Ignore:
Timestamp:
Sep 15, 2003, 8:22:33 PM (21 years ago)
Author:
z0rglub
Message:

Using PREFIX_INCLUDE to have strictly relative paths

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/install.php

    r94 r114  
    1919
    2020//-------------------------------------------------------------------- includes
     21define( PREFIX_INCLUDE, '.' );
    2122include( '../include/vtemplate.class.php' );
    2223include( '../include/functions.inc.php' );
  • trunk/include/functions.inc.php

    r85 r114  
    1717 *                                                                         *
    1818 ***************************************************************************/
    19 include( 'functions_user.inc.php' );
    20 include( 'functions_session.inc.php' );
    21 include( 'functions_category.inc.php' );
    22 include( 'functions_xml.inc.php' );
    23 include( 'functions_group.inc.php' );
     19include( PREFIX_INCLUDE.'./include/functions_user.inc.php' );
     20include( PREFIX_INCLUDE.'./include/functions_session.inc.php' );
     21include( PREFIX_INCLUDE.'./include/functions_category.inc.php' );
     22include( PREFIX_INCLUDE.'./include/functions_xml.inc.php' );
     23include( PREFIX_INCLUDE.'./include/functions_group.inc.php' );
    2424
    2525//----------------------------------------------------------- generic functions
Note: See TracChangeset for help on using the changeset viewer.