Quote Originally Posted by swguy View Post
You are watching NOTIFY_MODULES_UPDATE_PRODUCT_END but not taking action when it fires. This seems like a bug.
Huh? Lines 49-55 of the plugin's admin observer read
Code:
            // -----
            // If a product is being updated, update its tag names as well.
            //
            case 'NOTIFY_MODULES_UPDATE_PRODUCT_END':
                $zen_tags = new ZenTags();
                $zen_tags->updateProductTagInputs((int)$p1a['products_id']);
                break;