in the webassist/globals/globals.php file find the following code:
switch ($GLOBALS['WAGLOBAL_Currency']) {
    case "EUR":
        $GLOBALS['WAGLOBAL_CurrencySymbol'] = "€";
        $GLOBALS['WAGLOBAL_CurrencyChar'] = "€";
        break;
    case "GBP":
        $GLOBALS['WAGLOBAL_CurrencySymbol'] = "£";
        $GLOBALS['WAGLOBAL_CurrencyChar'] = "£";
        break;
    default:
        $GLOBALS['WAGLOBAL_CurrencySymbol'] = "$";
        $GLOBALS['WAGLOBAL_CurrencyChar'] = "$";
}
and change it to:
switch ($GLOBALS['WAGLOBAL_Currency']) {
    case "EUR":
        $GLOBALS['WAGLOBAL_CurrencySymbol'] = "€";
        $GLOBALS['WAGLOBAL_CurrencyChar'] = "€";
        break;
    case "GBP":
        $GLOBALS['WAGLOBAL_CurrencySymbol'] = "£";
        $GLOBALS['WAGLOBAL_CurrencyChar'] = "£";
        break;
    case "NOK":
        $GLOBALS['WAGLOBAL_CurrencySymbol'] = "Kr.";
        $GLOBALS['WAGLOBAL_CurrencyChar'] = "Kr.";
        break;
    default:
        $GLOBALS['WAGLOBAL_CurrencySymbol'] = "$";
        $GLOBALS['WAGLOBAL_CurrencyChar'] = "$";
}
 















