forked from mirrors/easyappointments
Added autoload.php to the index.php file.
This commit is contained in:
parent
b3f9eacc9d
commit
911c884cbc
1 changed files with 14 additions and 1 deletions
|
@ -14,6 +14,19 @@
|
||||||
require_once __DIR__ . '/config.php';
|
require_once __DIR__ . '/config.php';
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
*---------------------------------------------------------------
|
||||||
|
* COMPOSER AUTOLOAD FILE
|
||||||
|
*---------------------------------------------------------------
|
||||||
|
*
|
||||||
|
* Include Composer's autoload.php file so that I can use external
|
||||||
|
* libraries directly in every section of the application.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
require_once __DIR__ . '/application/third_party/autoload.php';
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*---------------------------------------------------------------
|
*---------------------------------------------------------------
|
||||||
* APPLICATION ENVIRONMENT
|
* APPLICATION ENVIRONMENT
|
||||||
|
@ -216,4 +229,4 @@ if (defined('ENVIRONMENT'))
|
||||||
require_once BASEPATH.'core/CodeIgniter.php';
|
require_once BASEPATH.'core/CodeIgniter.php';
|
||||||
|
|
||||||
/* End of file index.php */
|
/* End of file index.php */
|
||||||
/* Location: ./index.php */
|
/* Location: ./index.php */
|
||||||
|
|
Loading…
Reference in a new issue