Was relative control Src path fixed in 7.0.3?

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
ZLA
Commodore (COMO)
Commodore (COMO)
Posts: 496
Joined: Fri Mar 13, 2009 2:55 pm

Was relative control Src path fixed in 7.0.3?

Post by ZLA » Sun Jun 14, 2009 1:58 pm

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:
[[ConLib:Custom/SG_Basket]] The file '/MyStore/ConLib/Checkout/Google/GoogleCheckoutButton.ascx' does not exist.
If this wasn't fixed in 7.0.3, I suggest it get logged for a future release.

afm
Captain (CAPT)
Captain (CAPT)
Posts: 339
Joined: Thu Nov 03, 2005 11:52 pm
Location: Portland, OR
Contact:

Re: Was relative control Src path fixed in 7.0.3?

Post by afm » Sun Jun 14, 2009 4:04 pm

The Src parameter starts with ".." in 7.0.3:

Code: Select all

<%@ Register Src="../Checkout/Google/GoogleCheckoutButton.ascx" TagName="GoogleCheckoutButton" TagPrefix="uc" %>
Andy Miller
Structured Solutions

Shipper 3 - High Velocity Shipment Processing

ZLA
Commodore (COMO)
Commodore (COMO)
Posts: 496
Joined: Fri Mar 13, 2009 2:55 pm

Re: Was relative control Src path fixed in 7.0.3?

Post by ZLA » Sun Jun 14, 2009 6:49 pm

Thanks for the info Andy.

Post Reply