diff --git a/app/code/community/TIG/MyParcel2014/etc/config.xml b/app/code/community/TIG/MyParcel2014/etc/config.xml index 664ab4df..d19589b5 100755 --- a/app/code/community/TIG/MyParcel2014/etc/config.xml +++ b/app/code/community/TIG/MyParcel2014/etc/config.xml @@ -2,7 +2,7 @@ - 1.17.1 + 1.17.2 diff --git a/skin/frontend/base/default/js/TIG/MyParcel2014/checkout_type/onestepcheckout_index_index.js b/skin/frontend/base/default/js/TIG/MyParcel2014/checkout_type/onestepcheckout_index_index.js index 397b7f01..87b45679 100755 --- a/skin/frontend/base/default/js/TIG/MyParcel2014/checkout_type/onestepcheckout_index_index.js +++ b/skin/frontend/base/default/js/TIG/MyParcel2014/checkout_type/onestepcheckout_index_index.js @@ -89,11 +89,11 @@ function getMyParcelLatestData() { if(mypajQuery("input[id='shipping:city']").length && mypajQuery("input[id='shipping:city']").val().length) { data += mypajQuery("input[id='shipping:city']").val(); } - if($('billing:country_id').length && $('billing:country_id').getValue()){ - data += $('billing:country_id').getValue(); + if(mypajQuery('billing:country_id').length && mypajQuery('billing:country_id').getValue()){ + data += mypajQuery('billing:country_id').getValue(); } - if($('shipping:country_id').length && $('shipping:country_id').getValue()){ - data += $('shipping:country_id').getValue(); + if(mypajQuery('shipping:country_id').length && mypajQuery('shipping:country_id').getValue()){ + data += mypajQuery$('shipping:country_id').getValue(); } return data;