diff --git a/controller/frontend/src/Controller/Frontend/Customer/Standard.php b/controller/frontend/src/Controller/Frontend/Customer/Standard.php index 4263378f..094ad58e 100644 --- a/controller/frontend/src/Controller/Frontend/Customer/Standard.php +++ b/controller/frontend/src/Controller/Frontend/Customer/Standard.php @@ -129,7 +129,7 @@ public function editItem( $id, array $values ) $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'customer' ); $item = $manager->getItem( $id, ['customer/group'], true ); - unset( $values['customer.id'] ); + unset( $values['customer.id'], $values['customer.groups'], $values['customer.status'] ); $item->fromArray( $values ); return $manager->saveItem( $item );