Hi, there is a problem with the default currency symbols

if there is no ":" in TEXT_BASE_PRICE in yourlanguage.php, Dynamic Price Updater do not work.

To fix this problem find

Code:
// try and find the default currency symbols
var temp = origHTML.match(/.*:\s*([^0-9 ]*)([0-9.,]+)(.*)/);
and change to

Code:
// try and find the default currency symbols
var temp = origHTML.replace(/<?echo(TEXT_BASE_PRICE);?>/g,''); //NEW filter for TEXT_BASE_PRICE		
temp= temp.match(/s*([^0-9 ]*)([0-9.,]+)(.*)/);

web28