Update AdminTranslationsController.php

Fixes issue where path is not printed when error with email template saves occur.
This commit is contained in:
Daniel
2013-10-08 20:54:52 +08:00
parent 2899dfba5e
commit fa88a0bd93
@@ -1464,7 +1464,7 @@ class AdminTranslationsControllerCore extends AdminController
if ($module_name)
$path = str_replace('{module}', $module_name, $path);
if (!file_exists($path) && !mkdir($path, 0777, true))
throw new PrestaShopException(sprintf(Tools::displayError('Directory "%s" cannot be created'), dirname($file_path)));
throw new PrestaShopException(sprintf(Tools::displayError('Directory "%s" cannot be created'), dirname($path)));
file_put_contents($path.$mail_name.'.'.$type_content, $content);
}
else