fix frontend/index.php

This commit is contained in:
yuri
2015-03-19 15:35:38 +02:00
parent 5676d42801
commit 7a7c605687
+2 -2
View File
@@ -24,12 +24,12 @@ include "../bootstrap.php";
$app = new \Espo\Core\Application();
if (!empty($_GET['entryPoint'])) {
$app->runEntryPoint($_GET['entryPoint']);
exit;
}
$html = include("main.html");
$html = file_get_contents("frontend/main.html");
echo $html;
exit;