[-] BO : #PSTEST-202 : fixed , the problem was from the adminTranslationController, all the fields were not listed in the fields traduction page

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11826 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mBertholino
2011-12-28 10:31:07 +00:00
parent 99295113e2
commit 7c133b80ba
3 changed files with 4 additions and 2 deletions
@@ -1128,7 +1128,7 @@ class AdminTranslationsControllerCore extends AdminController
continue;
include_once(_PS_CLASS_DIR_.$classFile);
$prefix_key = substr($classFile, 0, -4);
if (!class_exists($prefix_key, false))
if (!class_exists($prefix_key, false) && !class_exists($prefix_key.'Core', false))
continue;
if (!is_subclass_of($prefix_key, 'ObjectModel'))
continue;