GX-Bug #69975
Von Josua Michalak vor etwa 2 Jahren aktualisiert
### When trying to get to the "Cross Selling" tab within a product, when clicking on it, it sends you back to the categories / products overview. --- **Steps to reproduce:** 1. Edit a product in the Gambio Admin. 2. Click on the "Cross Selling" tab. **Expected result:** The tab to configure cross selling for the edited product should be opened. **Actual result:** The click on the tab redirects you to the categories/products overview page. This happens, because the action parameter is left empty. ``` http://localhost/gxdev/admin/categories.php?current_product_id=2&cPath=0&action= ``` While it should be: ``` http://localhost/gxdev/admin/categories.php?current_product_id=2&cPath=0&action=edit_crossselling ``` When adding the missing parameter manually, the preferred site opens without a problem.