I can confirm this, as a customer of mine just called me and asked why he can't switch products on/off after upgrade to 1.5.0
The green/red tab in the categories list has a link like this:
categories.php?action=setflag&flag=0&pID=6743&cPath=871_946_933&page=1
But the code that handles it reads:
PHP Code:
if ( isset($_POST['flag']) && ($_POST['flag'] == '0') || ($_POST['flag'] == '1') ) {
if (isset($_GET['pID'])) {
zen_set_product_status($_GET['pID'], $_POST['flag']);
}
}
Switching the $_POST to $_GET solved the problem :)
Bookmarks