[-] Core: Fix cache issue and order slip pdf generation

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17902 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rGaillard
2012-10-22 12:40:15 +00:00
parent 6c09e8328d
commit 20ac37e6bb
13 changed files with 96 additions and 37 deletions
+1 -1
View File
@@ -873,7 +873,7 @@ class AdminImportControllerCore extends AdminController
$category->parent = $cat_moved[$category->parent];
$category->id_parent = $category->parent;
}
else if (isset($category->parent) && is_string($category->parent))
elseif (isset($category->parent) && is_string($category->parent))
{
$category_parent = Category::searchByName($default_language_id, $category->parent, true);
if ($category_parent['id_category'])