CORS refactoring

This commit is contained in:
Albert Santoni 2014-07-03 12:26:09 -04:00
parent b0cab62e80
commit a5822aa07a
4 changed files with 42 additions and 19 deletions

View file

@ -47,6 +47,9 @@ if (file_exists('/usr/share/php/libzend-framework-php')) {
//Upgrade directory
set_include_path(APPLICATION_PATH . '/upgrade/' . PATH_SEPARATOR . get_include_path());
//Common directory
set_include_path(APPLICATION_PATH . '/common/' . PATH_SEPARATOR . get_include_path());
/** Zend_Application */
require_once 'Zend/Application.php';