Skip to content
Snippets Groups Projects
Commit 9e9e224c authored by Xebax's avatar Xebax
Browse files

REST API: fix deleting a product/service.

The global variable $user must be set before calling the
Product::delete() method else the check of permissions fails.
parent 4a0d5549
No related branches found
No related tags found
No related merge requests found
......@@ -232,7 +232,6 @@ class Products extends DolibarrApi
*
* @param int $id Product ID
* @return array
* FIXME Deleting a product/service does not work because the Product::delete() method uses a global $user but it is not set.
*/
function delete($id)
{
......@@ -248,6 +247,10 @@ class Products extends DolibarrApi
throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
}
// The Product::delete() method uses the global variable $user.
global $user;
$user = DolibarrApiAccess::$user;
return $this->product->delete($id);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment