Page MenuHomeIn-Portal Phabricator

in-portal
No OneTemporary

File Metadata

Created
Tue, Feb 25, 12:05 PM

in-portal

Index: branches/RC/index.php
===================================================================
--- branches/RC/index.php (revision 11739)
+++ branches/RC/index.php (revision 11740)
@@ -1,26 +1,19 @@
<?php
-
$start = getmicrotime();
define('FULL_PATH', realpath(dirname(__FILE__)));
-
-if (!file_exists(FULL_PATH.'/core/kernel/application.php')) {
- die('Please re-checkout _inportal_kernel4 cvs module into the root directory ('.FULL_PATH.') and remove kernel/kernel4 folder. Make sure to checkout correct branch (RC or HEAD).');
-}
include_once(FULL_PATH.'/core/kernel/startup.php');
$application =& kApplication::Instance();
$application->Init();
$application->Run();
$application->Done();
$end = getmicrotime();
-//print_pre(get_included_files());
-
function getmicrotime()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
?>
\ No newline at end of file

Event Timeline