If this wasn't fixed in 7.0.3, I suggest it get logged for a future release.[[ConLib:Custom/SG_Basket]] The file '/MyStore/ConLib/Checkout/Google/GoogleCheckoutButton.ascx' does not exist.
Was relative control Src path fixed in 7.0.3?
Was relative control Src path fixed in 7.0.3?
In Conlib/Basket.ascx, the google checkout control refers to Src="../Checkout/Google/GoogleCheckoutButton.ascx" instead of Src="~/Checkout/Google/GoogleCheckoutButton.ascx". This throws an error if you make a custom copy and put it in the Conlib/Custom folder:
Re: Was relative control Src path fixed in 7.0.3?
The Src parameter starts with ".." in 7.0.3:
Code: Select all
<%@ Register Src="../Checkout/Google/GoogleCheckoutButton.ascx" TagName="GoogleCheckoutButton" TagPrefix="uc" %>
Re: Was relative control Src path fixed in 7.0.3?
Thanks for the info Andy.