//small fix

This commit is contained in:
vAugagneur
2012-10-22 16:19:27 +00:00
parent 2a2f33ede2
commit b85c06fb01
@@ -514,7 +514,7 @@ class AdminLanguagesControllerCore extends AdminController
protected function checkEmployeeIdLang($current_id_lang)
{
//update employee lang if current id lang is disabled
Db::getInstance()->execute('UPDATE `'._DB_PREFIX.'employee` set `id_lang`='.(int)Configuration::get('PS_LANG_DEFAULT').' WHERE `id_lang`='.(int)$current_id_lang);
Db::getInstance()->execute('UPDATE `'._DB_PREFIX_.'employee` set `id_lang`='.(int)Configuration::get('PS_LANG_DEFAULT').' WHERE `id_lang`='.(int)$current_id_lang);
}
}