Index: branches/5.2.x/admin/index.php =================================================================== diff -u -N -r13840 -r14095 --- branches/5.2.x/admin/index.php (.../index.php) (revision 13840) +++ branches/5.2.x/admin/index.php (.../index.php) (revision 14095) @@ -1,6 +1,6 @@ Init(); - $application->Run(); - $application->Done(); +include_once(FULL_PATH . '/core/kernel/startup.php'); - $end = getmicrotime(); +$application =& kApplication::Instance(); +$application->Init(); +$application->Run(); +$application->Done(); - function getmicrotime() - { - list($usec, $sec) = explode(" ", microtime()); - return ((float)$usec + (float)$sec); - } \ No newline at end of file +$end = microtime(true); \ No newline at end of file