summaryrefslogtreecommitdiff
path: root/public_html/vfs_bootstrap.php
blob: 4f0e05dd2bce8abc27630440a2f3e33790bafdc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
# loads the vfs environment

require_once( dirname(__FILE__) . '/vfs_config.php');

if ( ! defined(VFS_CLASS) )
	define('VFS_CLASS', 'class/');

require(ABSPATH . 'functions.php');
require(ABSPATH . VFS_CLASS . 'mysql.php');

if ( file_exists(ABSPATH . 'setup.php') )
	require(ABSPATh . 'setup.php');