Skip to content
Snippets Groups Projects
Commit 9138831c authored by tbrehm's avatar tbrehm
Browse files

- Fixed a problem with form type currency.

- Added a missing language string for the website form.
parent 9ac2fa3f
No related branches found
No related tags found
2 merge requests!46Master,!21Master
......@@ -191,7 +191,7 @@ class tform {
break;
case 'CURRENCY':
$new_record[$key] = number_format($record[$key], 2, ',', '');
$new_record[$key] = number_format((double)$record[$key], 2, ',', '');
break;
default:
......
......@@ -56,4 +56,5 @@ $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid
$wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z';
$wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota';
$wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/';
$wb["php_open_basedir_txt"] = 'PHP open_basedir';
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment