index.php small look change

This commit is contained in:
Yuri Kuznetsov
2014-04-16 15:22:49 +03:00
parent 4343917a7d
commit aeda451488

View File

@@ -26,8 +26,9 @@ $app = new \Espo\Core\Application();
$app->isInstalled();
if (empty($_GET['entryPoint'])) {
$app->runClient();
} else {
if (!empty($_GET['entryPoint'])) {
$app->runEntryPoint($_GET['entryPoint']);
exit;
}
$app->runClient();