Logo

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
playground:playground [2018/11/08 08:57]
wikieditor
playground:playground [2018/11/08 10:11]
wikieditor
Line 1: Line 1:
-====== ​Upgrade from v4.3.8 or below to v4.3.9 or above ====== +====== ​playground ​======
- +
- +
-\\ +
-===== Manually change templates ===== +
-\\ +
-If you upgrade from Reverse Auction Factory v4.3.8 or below to version v4.3.9 or above and choose to NOT overwrite templates, then you will have to do the following precise modifications for compatibility reasons.\\ +
-\\ +
-  * File components/​com_rbids/​templates/​default/​js/​t_javascript_language.tpl,​ at lines 27-33 +
-replace: <​code>​{if $terms_and_conditions} +
-    var must_accept_term= true; +
-{else} +
-    var must_accept_term= false; +
-{/if} +
-var auction_currency='​{$auction->​currency}';</​code>​\\ +
-with: <​code>​{if !empty($terms_and_conditions)} +
-    var must_accept_term= true; +
-{else} +
-    var must_accept_term= false; +
-{/if} +
-{if !empty($auction->​currency)} +
-    var auction_currency='​{$auction->​currency}';​ +
-{else} +
-    var auction_currency='';​ +
-{/​if}</​code>​\\ +
-\\ +
-* File components/​com_rbids/​templates/​default/​js/​t_javascript_maps.tpl,​ at line 15 +
-replace: <​code>​{if ($googleMapX && $googleMapY)}</​code>​\\ +
-with: <​code>​{if (!empty($googleMapX) && !empty($googleMapY))}</​code>​ +
-\\ +
-   +
- +
- +