Logo

This is an old revision of the document!


Upgrade from v4.3.8 or below to v4.3.9 or above


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:

{if $terms_and_conditions}
    var must_accept_term= true;
{else}
    var must_accept_term= false;
{/if}
var auction_currency='{$auction->currency}';


with:

{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}



* File components/com_rbids/templates/default/js/t_javascript_maps.tpl, at line 15 replace:

{if ($googleMapX && $googleMapY)}


with:

{if (!empty($googleMapX) && !empty($googleMapY))}