index.php small look change

This commit is contained in:
Yuri Kuznetsov
2014-04-16 15:22:49 +03:00
parent 4343917a7d
commit aeda451488
+4 -3
View File
@@ -26,8 +26,9 @@ $app = new \Espo\Core\Application();
$app->isInstalled(); $app->isInstalled();
if (empty($_GET['entryPoint'])) { if (!empty($_GET['entryPoint'])) {
$app->runClient();
} else {
$app->runEntryPoint($_GET['entryPoint']); $app->runEntryPoint($_GET['entryPoint']);
exit;
} }
$app->runClient();