Hi Guys

The Action causing me grief is the following on the CatalogController (v.265).

[ChildActionOnly]
        public ActionResult ProductReviewOverview(int productId)
        {
            var product = _productService.GetProductById(productId);
            if (product == null)
                throw new ArgumentException("No product found with the specified id");

            var model = new ProductReviewOverviewModel()
            {
                ProductId = product.Id,
                RatingSum = product.ApprovedRatingSum,
                TotalReviews = product.ApprovedTotalReviews,
                AllowCustomerReviews = product.AllowCustomerReviews
            };
            return PartialView(model);
        }


And it only gives an error for one specific product [ The Battle of LA ].

The error I am getting is this.

The strange thing is, that on the regular dark orange theme, that Action works fine, and the product is obtained, but on my custom theme, it throws the error !

I have debugged, and the ID is definitely being passed to the Action, so the service should be able to retrieve the product, but it isn't ! Really strange.

I would greatly appreciate any help with this.

Thank You.