[-][-] FO : not check if Object employee is Load
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9173 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -379,8 +379,8 @@ class ShopCore extends ObjectModel
|
||||
|
||||
$employee = Context::getContext()->employee;
|
||||
|
||||
/* if the profile isn't a superAdmin */
|
||||
if ($employee && $employee->id_profile != _PS_ADMIN_PROFILE_)
|
||||
// If the profile isn't a superAdmin
|
||||
if (Validate::isLoadedObject($employee) && $employee->id_profile != _PS_ADMIN_PROFILE_)
|
||||
{
|
||||
$select .= ', es.id_employee';
|
||||
$from .= 'LEFT JOIN '._DB_PREFIX_.'employee_shop es ON es.id_shop = s.id_shop';
|
||||
|
||||
Reference in New Issue
Block a user