Disabling A Category

For some reason this does not work:

$category->setIsActive(false);

You must use this instead:

$category->setIsActive(0);

Mike Whitby Almost 12 years ago