snappymail/rainloop/v/0.0.0/index.php.root
RainLoop Team 484271bb69 Release commit
Refactoring
2014-07-15 22:45:15 +04:00

19 lines
428 B
Plaintext

<?php
if (!defined('APP_VERSION'))
{
define('APP_VERSION', '0.0.0');
define('APP_INDEX_ROOT_FILE', __FILE__);
define('APP_INDEX_ROOT_PATH', str_replace('\\', '/', rtrim(dirname(__FILE__), '\\/').'/'));
}
if (file_exists(APP_INDEX_ROOT_PATH.'rainloop/v/'.APP_VERSION.'/index.php'))
{
return include APP_INDEX_ROOT_PATH.'rainloop/v/'.APP_VERSION.'/index.php';
}
else
{
echo '[105] Missing version directory';
exit(105);
}