From aeda4514881ee614e68c19d25f09c0f95d21d38b Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Wed, 16 Apr 2014 15:22:49 +0300 Subject: [PATCH] index.php small look change --- index.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/index.php b/index.php index 6b8e04fb99..a0f3613583 100644 --- a/index.php +++ b/index.php @@ -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();