Everybody can view orders

20.11.2023 13:50
#1
smart.support
Joomshopping forum user no avatar
Name: Smart
01.11.2013
Posts: 5
Quote
Everybody can view orders

Hi!

We have found a issue.
Everybody can view orders


Joomla: 4.4.0
JoomShopping: 5.2.1
PHP: 8.1.25
MySQL: 5.7.43-47-log

Letzte Änderung: 20.11.2023 17:31
 
20.11.2023 13:56
#2
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25941
Quote
Aw: Everybody can view orders

components\com_jshopping\Controller\UserController.php

~row 360
if ($user->id!=$order->user_id){
\JSError::raiseError(500, "Error order number. You are not the owner of this order");
}

change to

if ($user->id!=$order->user_id){
\JSError::raiseError(500, "Error order number. You are not the owner of this order");
return 0;
}

-----------
Will be in new version


Letzte Änderung: 20.11.2023 14:00
 
20.11.2023 14:04
#3
smart.support
Joomshopping forum user no avatar
Name: Smart
01.11.2013
Posts: 5
Quote
Aw: Everybody can view orders

Thank you!

 


Copyrights MAXXmarketing GmbH. Alle Rechte vorbehalten
Durch die Nutzung dieser Website stimme ich zu, dass Cookies zur optimalen Gestaltung der Website sowie zur Analyse der Nutzung der Website verwendet werden. Weiterführende Informationen finden Sie hier. OK, einverstanden.