[-] Installer : added ob_start() (required with the cookie mode when debug mode is activated)

This commit is contained in:
Damien Metzger
2013-08-19 10:04:23 +02:00
parent c5097b19cc
commit 218ce59de6
2 changed files with 9 additions and 10 deletions
+4 -7
View File
@@ -24,14 +24,11 @@
* International Registered Trademark & Property of PrestaShop SA
*/
require_once 'init.php';
require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'init.php');
try
{
require_once _PS_INSTALL_PATH_.'classes/controllerHttp.php';
try {
require_once(_PS_INSTALL_PATH_.'classes'.DIRECTORY_SEPARATOR.'controllerHttp.php');
InstallControllerHttp::execute();
}
catch (PrestashopInstallerException $e)
{
} catch (PrestashopInstallerException $e) {
$e->displayMessage();
}